$(document).ready(function(){

//three-cols

$('.three-cols div').each(function(){
	
	var $link = $('h4 a',$(this)).attr('href');
	$(this).hover(function(){
		$(this).css({'background-color':'#eff6e5', 'cursor':'pointer'});
	},function(){
		$(this).css({'background-color':'#ffffff'});
	});
	$(this).click(function(){
		window.location = $link;  
		return false;
	});

});


//end
});
