$(document).ready(function(){
						   
	$("img.fadehover").hover(
		function() {
			$(this).animate(
				{
					"opacity": "0.7"
				}, 
				{
					queue:false, 
					duration:600
				}
			);
		},
		function() {
			$(this).animate({"opacity": "1"}, {queue:false, duration:600});
	});
	
	$("img.fadehoverbanner").hover(
		function() {
			$(this).animate(
				{
					"opacity": "0"
				}, 
				{
					queue:false, 
					duration:900
				}
			);
		},
		function() {
			$(this).animate({"opacity": "1"}, {queue:false, duration:900});
	});
	
	$(".limenu").hover(
					   
		function() {
			$("div", this).stop().animate(
				{
					"opacity": "0"
				}, 
				{
					queue:false, 
					duration:600
				}
			),
			$("a", this).stop().animate(
				{
					"color": "#4763a2"
				}, 
				{
					queue:false, 
					duration:600
				}
			)
		},
		function() {
			$("div", this).stop().animate({"opacity": "1"}, {queue:false, duration:400}),
			$("a", this).stop().animate({"color": "#48482e"}, {queue:false, duration:400})			
	});
 
});

