$(document).ready(function() {
	$("div.mb-pic a").animate({opacity:"0"});
	$("#topmenu ul li:last").css("background-position","right top");
	$("div.mb-pic a").hover(	
		function() {
			$(this).animate({opacity:"1"}, 600);
			$(this).parent().parent().find("h3 a").animate( {color:"#e36325"}, 600);
		},
		function() {
			$(this).animate({opacity:"0"}, 600);
			$(this).parent().parent().find("h3 a").animate( {color:"#7d7d7d"}, 600);
		}
	);
	$("div.mb-text h3 a").hover(	
		function() {
			$(this).animate( {color:"#e36325"}, 600);
			$(this).parent().parent().parent().find("div.mb-pic a").animate({opacity:"1"}, 600);
		},
		function() {
			$(this).animate( {color:"#7d7d7d"}, 600);
			$(this).parent().parent().parent().find("div.mb-pic a").animate({opacity:"0"}, 600);
		}
	);	
});