$(document).ready(
	function () {
	
	// Change html class from no-js to js
	$("html").removeClass("no-js");
	$("html").addClass("js");
	
	// Open links with rel="external" in new window - like ye ole' target="_blank"
	$('a[rel="external"]').click(function () { window.open($(this).attr('href')); return false; });
	
	// Featured video
	$('#featured_video_thumb').colorbox({width:'640px', height:'437px', html:'<iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/teJwC35RXx4" frameborder="0" allowfullscreen></iframe>'});
	  
	}
);


