
// Initialize jQuery
$(document).ready(function()
{	
	// Get superfish menu running
	$('ul.sf-menu').superfish();
	
	// Add hinting to our search box
	$('#search-box-input').hint('inactive');
	
	// Load some facebox action
	$('#quick-media a').facebox({
		 opacity: .5
	});
	
	// Fire up the header slideshow
	$('#header-slides').cycle({
		timeout: 15000,
		speed: 3000,
		sync: 1
	});
	
	// Fix PNGs for old IE users
	$(".needs-png-fix").pngFix();
	
	// Pretty Photo for Video Broadcast
	$("a[rel^='prettyPhoto']").prettyPhoto({
		opacity: 0.75
	});
});