$(document).ready( function() {
	
	// menu selected states from js var in footer
	$('#nav-' + sPage + ' > a').addClass('selected');

	// bind external links in new windows
	$('a[rel=external]').click(function(){ 
		open(this.href); 
		return false; 
	});
	
	// flash videos
	$('#ph-link, #lv-link').colorbox({
		innerWidth:'320px',
		innerHeight:'280px',
		iframe:true,
		opacity:.9
	});

});