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;
	}
}

function Goto(page) {
	$("tr.highlight").click(function (event) {
		if ($(event.target).is('td')) {
			document.location.href = page;
		}
	});
}

$(document).ready(function(){
	$("div.switch").mouseover(function(){
		var id = $(this).attr("id");
		$("img#" + id + "_1").hide();
		$("img#" + id + "_2").show();
	}).mouseout(function(){
		var id = $(this).attr("id");
		$("img#" + id + "_2").hide();
		$("img#" + id + "_1").show();
	});
});