// REFERENCE: Using jQuery with Other Libraries
// http://docs.jquery.com/Using_jQuery_with_Other_Libraries
jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery(".offerbox p a").bigTarget({
    	hoverClass: 'bigTargetHover', // CSS class applied to the click zone onHover
		clickZone : 'div:eq(0)' // jQuery parent selector
	});
	
});

jQuery(window).load(function() {
	jQuery('.flexslider').flexslider({
		'controlNav': false
	});
});
