/* IE6 flicker fix
-------------------------------------------------- */
try { document.execCommand("BackgroundImageCache", false, true); } catch(err){}

$(document).ready(function() {
	$("TABLE.front1 TR").mouseover(function(){
		$(this).addClass("hover");
	}).mouseout(function(){
		$(this).removeClass("hover");
	}).click(function(){
		//$(this).toggleClass("highlight");
		location.href = $(this)[0].title;
	});
});

