$(document).ready(function(){
	
	$("DIV.newsPost h3 a").bigTarget({
		hoverClass: 'newsover', // CSS class applied to the click zone onHover
		clickZone : 'div:eq(0)' // jQuery parent selector
	});
	
	$("DIV.eventPost h4 a").bigTarget({
		hoverClass: 'eventover', // CSS class applied to the click zone onHover
		clickZone : 'div:eq(1)' // jQuery parent selector
	});
	
	$("DIV.pressPost h2 a").bigTarget({
		hoverClass: 'pressover', // CSS class applied to the click zone onHover
		clickZone : 'div:eq(0)' // jQuery parent selector
	});
	
	$("ul#theProgram").accordion();
	$('.captionBox img').jcaption({
		copyStyle: true,
		animate: true,
		autowidth: true,
		show: {height: "show"},
		hide: {height: "hide"}
	});



});