$(document).ready(function(){
   	$("#service_blocks li").click(function(){
	  window.location=$(this).find("h3 a").attr("href"); return false;
	});
        $("#service_blocks li").hover(
        function(){
          $(this).fadeTo("fast", 0.8)
          $(this).css("cursor", "pointer")
        },

        function(){
          $(this).fadeTo("fast", 1.0)
        });
    });