function mover(f){
//	$(this).css({"background":"url(/images/hilight.png)","background-position":"bottom","background-repeat":"no-repeat"});
	$(this).stop().animate(
			{backgroundPosition:"(0 65px)"}, 
			{duration:300})

}


function mout(f){
//	$(this).css({"background":"url(/images/light.png)","background-position":"bottom","background-repeat":"no-repeat"});
	$(this).stop().animate(
			{backgroundPosition:"(0 465px)"}, 
			{duration:300})
}

$(document).ready(function(){
		$("#startlogo1").hover(function(){
 		     $(this).bgFade('fadeIn');
		}, function() {
		     $(this).bgFade('fadeOut');
		});

		$("#startlogo2").hover(function(){
 		     $(this).bgFade('fadeIn');
		}, function() {
		     $(this).bgFade('fadeOut');
		});

		$("#startlogo3").hover(function(){
 		     $(this).bgFade('fadeIn');
		}, function() {
		     $(this).bgFade('fadeOut');
		});

		$(".rightbutton").hover(function(){
 		     $(this).bgFade('fadeIn');
		}, function() {
		     $(this).bgFade('fadeOut');
		});

});


