jQuery(function(){
	jQuery(".home .entry, .tendercard").hover(function(){
		jQuery(this).css({
			backgroundColor: '#e0e0e0',
			cursor: "pointer"
				
		});
	}, function(){
		jQuery(this).css({
			backgroundColor: '#f0f0f0'
		});
	});
	
	jQuery(".home .entry a, .tendercard a").click(function(e){
		e.stopPropagation();
	});
	
	jQuery(".home .entry, .tendercard").click(function(){
		//jQuery("h2 a", jQuery(this)).trigger("click");
		var link = jQuery(".more a", jQuery(this)).attr("href");
		window.location = link;
	});
	
	
	// ACCORDION
	
	
	
	
})




