		$(document).ready(function() {
		$('div.startleft a img').animate({opacity: "0.5"}, "600");
		$('div.startright a img').animate({opacity: "0.5"}, "600");
			// $('div.startleft a img').css('display','none');	
			$('div.startleft a img').mouseover(function(){
			$(this).animate({opacity: "1"}, "1200");
			});
			$('div.startleft a img').mouseout(function(){
			$(this).animate({opacity: "0.5"}, "1200");	
		});
			$('div.startright a img').mouseover(function(){
			$(this).animate({opacity: "1"}, "1200");
			});
			$('div.startright a img').mouseout(function(){
			$(this).animate({opacity: "0.5"}, "1200");	
	
		});

});
