$(document).ready(function() {
//     $("div.homeSpecial").hover(function(){
//	alert( "moo" );
//	var src = $(this).attr("rel");
//	alert( src );
//	window.location = "http://office/haven/public_html/links/" + src + "/";
//     });
	$("ul#home_creatives li").mouseenter(function() {
	        $(this).animate({opacity: '1.0'}, 500);
	  }).mouseleave(function() {
	      $(this).animate({opacity: '0.6'}, 500);
	  });

	
	
 });
