Cufon.replace('h2, h3');

$(document).ready(function() {
  $(".service img").hover(function(){
		$(this).fadeTo("fast", 0.75);
    $(this).parent().siblings().children().children(".off").hide();
    $(this).parent().siblings().children().children(".on").fadeIn("slow");
	},function(){
   	$(this).fadeTo("fast", 1);
    $(".off").show();
    $(".on").hide();
	});
});
