function initClient(){	 $(".gray img").hover(function(){		$(this).fadeTo(300, 0.0); // This should set the opacity to 100% on hover	   },function(){			$(this).fadeTo(300, 1); // This should set the opacity back to 30% on mouseout	   });	if($('.pager').length > 0)	{			$('.pager li.pager-next,.pager li.pager-previous').hover(function(){			$(this).attr('id','hover');		},function(){			$(this).attr('id','');		});	}	Cufon.replace('.client');		Cufon.replace('.pager li', {hover: true});		Cufon.replace('.pager li a', {hover: true});	}$(document).ready(function(){
   //$(".vignetteclient").fadeTo("slow", 0.4); // This sets the opacity of the thumbs to fade down to 30% when the page loads
  initClient();});

