// JavaScript Document
 $(document).ready(function(){ 
	$(".holder").click(function() {  
		  window.location = $(this).find("h1:first a:first").attr("href");  
	});  				  
 });
 