/* adds bookmark in browser */
function CreateBookmarkLink(title, url) {
	if (window.sidebar) {
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) {
		window.external.AddFavorite( url, title);
	} else if(window.opera && window.print) {
		return true;
	}
}

/* creates hyperlinks for table rows */
function Goto(page) {
	$("tr.highlight").click(function (event) {
		if ($(event.target).is('td')) {
			document.location.href = page;
		}
	});
}

$(document).ready(
	function()
	{
		$('#fisheye').Fisheye(
			{
				maxWidth: 30,
				items: 'a',
				itemsText: 'span',
				container: '.fisheyeContainter',
				itemWidth: 75,
				proximity: 90,
				halign : 'center'
			}
		)
	}
);
