jQuery(document).ready(function() { 

	$(document).pngFix();

	/* HOME PAGE FADER */
	$('#image_rotate').innerfade({ 
		speed: 'slow', 
		timeout: 5000, 
		type: 'sequence', 
		containerheight: '220px'
	});

	
	/* FANCY BOX */
	$("a.fancy").fancybox({
		'width'				: 800,
		'height'			: 500,
		'titlePosition'		: 'inside',
		'titleShow'			: false,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#555',
		'autoDimensions'	: false,
		'autoScale'			: true
	});


	/* changin the yellow dot on mouseover */
	$('img.dot').hover(function () {
		this.src = '/wp-content/uploads/2011/01/pressroom_pdf_red.png';
	}, function () {
		this.src = '/wp-content/uploads/2011/01/pressroom_pdf_yellow.png';
	});


	/* makes press table cells clickable */ //dave ott code
	var $press_table_rows = $("#wp-table-reloaded-id-1-no-1 td.column-7");
	$press_table_rows.click(function(e) {
		e.preventDefault();
		$(this).find("a").trigger("click");
	});

});

