$(document).ready(function() {	

// Makes the entire block clickable
	$("ul#news li").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	});
	

// Any links with a rel="lightbox" attribute opens in fancybox
	$("a.fancybox").fancybox({
		'hideOnContentClick': true,
		'centerOnScroll': true,
		'zoomOpacity': true,
		'overlayShow': true,
		'overlayOpacity': 0.5
	}); 


// Embeds the flash video into the #flash_content div
	$("#flash_content").flashembed({src: "flash/gccPlayer.swf", wmode: "opaque"});
});
