$(document).ready(function(){
	//BigTarget initialization
	$(".home_frame h3 a").bigTarget({
		hoverClass: 'over', // CSS class applied to the click zone onHover
		clickZone : 'div:eq(0)' // jQuery parent selector
	});
	
	//BigTarget CSS
	$(".home_frame").hover(function () {
		$(this).css({ cursor:"pointer"});
	});

});