$(document).ready(function(){
	$(".lightbox img").hover(
	function() {
		$(this).animate({ 
	opacity:"0.7"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
	opacity:"1"  
	  }, "easeOut" )
	});
	
	$(".Nazaer").hover(
	function() {
		$(this).animate({ 
	top:"10px"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
	top:"0px"  
	  }, "easeOut" )
	});
	
	$(".mainPhoto div").hover(
	function() {
		$(this).animate({ 
	top:"10px"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
	top:"0px"  
	  }, "easeOut" )
	});
	
	
	$(".basic").hover(
	function() {
		$(this).animate({ 
	opacity:"0.7"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
	opacity:"1"  
	  }, "easeOut" )
	});
	
	
	$(".onlineStore img").hover(
	function() {
		$(this).animate({ 
		opacity:"0"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
		opacity:"1"     
	  }, "easeOut" )
	});
	$(".onlineStoreHome img").hover(
	function() {
		$(this).animate({ 
		opacity:"0"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
		opacity:"1"     
	  }, "easeOut" )
	});
	
	$(".manuBar ul li a").hover(
	function() {
		$(this).animate({ 
		paddingLeft:"10px",
		paddingRight:"10px"
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
		paddingLeft:"0px",
		paddingRight:"0px"     
	  }, "easeOut" )
	});
	
	$(".jcarousel-skin-tango a").hover(
	function() {
		$(this).animate({ 
		top:"-7px"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
		top:"0px"     
	  }, "easeOut" )
	});
	
	$(".ManufList").hover(
	function() {
		$(this).animate({ 
		top:"-7px"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
		top:"0px"     
	  }, "easeOut" )
	});
	
	$(".socialMedia a img").hover(
	function() {
		$(this).animate({ 
		opacity:"0.7"
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
		opacity:"1px"
	  }, "easeOut" )
	});
	
	
	$(".more").hover(
	function() {
		$(this).animate({ 
		backgroundPosition:"1px 3px",
		width:"12",
		paddingLeft:"15px"   
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
		backgroundPosition:"-10px 3px",
		width:"28",
		paddingLeft:"0px" 
	  }, "easeOut" )
	});
	/*$(".over").hover(
	function() {
		$(this).animate({ 
    paddingLeft: "15" ,
	paddingRight:"30"
	  }, "easeOut" )
	},
	function() {
		$(this).animate({ 
    paddingLeft: "0",
	paddingRight:"15px"  
	  }, "easeOut" )
	});*/
	$("#nav li ul li a").hover(
	function() {
		$(this).animate({
	paddingTop: "10px", 
	paddingBottom: "10px"
	}, "easeOut" )
	},
	function() {
		$(this).animate({
	paddingTop: "5px", 
	paddingBottom: "5px"
	  }, "easeOut" )
	});
	
	$(".leftSide div a").hover(
	function() {
		$(this).animate({
	paddingTop: "10px", 
	paddingBottom: "10px"
	}, "easeOut" )
	},
	function() {
		$(this).animate({
	paddingTop: "5px", 
	paddingBottom: "5px"
	  }, "easeOut" )
	});
	
	$("#footer p a").hover(
	function() {
		$(this).animate({"top": "-5"},  "easeOut");
	},
	function() {
		$(this).animate({"top": "5"},  "easeOut");
		$(this).animate({"top": "0"},  "easeOut");
	});
});


