$(document).ready(function() {

	$("#llogo").mouseout(function(){ $(this).css({"background":"url(img/logo.png) no-repeat left top"}); });
	$("#llogo").mouseover(function(){$(this).css({"background":"url(img/logo.png) no-repeat left bottom"}); });

	$("#game0").mouseover(function () {
			$("#wrapper").css({"background":"url(img/bg0.jpg) no-repeat center center"});
		}
	);

	$("#game1").mouseover(function () {
			$("#wrapper").css({"background":"url(img/bg1.jpg) no-repeat center center"});
		}
	);

	$("#game2").mouseover(function () {
			$("#wrapper").css({"background":"url(img/bg2.jpg) no-repeat center center"});
		}
	);
	

});
