$(document).ready(function(){
	$("div.inactive").hover(function(){
		$(this).css("background-image","url('/img/orange_down.png')");		
	});
	$("div.inactive").mouseleave(function(){
		$(this).css("background-image","url('/img/bluee.png')");		
	});
	$("#shadow_logo").hover(function(){
		$(this).addClass("type_one");						
	});
	$("#shadow_logo").mouseleave(function(){
		$(this).removeClass("type_one");	
	});
	$(".shadow").hover(function(){
		$(this).addClass("shadowww");						
	});
	$(".shadow").mouseleave(function(){
		$(this).removeClass("shadowww");	
	});
});
