$(document).ready(function () {
	
	$('div#menuImages div')
		.mouseover(function(){
			$(this).find("a").find("img.menuFrontSP").stop().animate({"opacity": "0"}, "fast");
			$(this).find("a").find("img.menuBackSP").stop().animate({"opacity": "1"}, "fast");
			//$(this).stop().animate({backgroundPosition:"(-10px 0px)",color:"#ffffff"}, {duration:700})
		})
		.mouseout(function(){
			$(this).find("a").find("img.menuFrontSP").stop().animate({"opacity": "1"}, "fast");
			$(this).find("a").find("img.menuBackSP").stop().animate({"opacity": "0"}, "fast");
			//$(this).stop().animate({backgroundPosition:"(-10px -98px)",color:"#545b5e"}, {duration:200})
		});
		
	$('a.newWindow').click(function() {
		window.open($(this).attr('href'));
		return false;
	});
		
});

function goto(target) {
	document.location.href=target;
	return false;
}


