$(document).ready(function(){
	$("#services div.item").append("<span></span>").find("span").fadeTo(0,0).parent().find("img").fadeTo(0,0.8);
	$("#services div.item").hover(
		function(){
			$(this).addClass("hover");
			$(this).find("span").stop().fadeTo("fast",1);
			$(this).find("img").stop().fadeTo("fast",1);
		},
		function(){
			$(this).removeClass("hover");
			$(this).find("span").stop().fadeTo("fast",0);
			$(this).find("img").stop().fadeTo("fast",0.8);
		}
		);
	$("#services div.item").click(function(){
		 window.location=$(this).find("a").attr("href");return false;
	});

});
