


//do stuff
jQuery(document).ready(function($){
	var thebody = $("body");
	thebody.addClass("jsok");
	
	if(thebody.hasClass("movie") || thebody.hasClass("front")) {
		//colorbox the interviews
		//$(".thumb a").colorbox({ iframe:true, innerWidth:640, innerHeight:360 }); 
		
		$(".thumb a").bind("click", function(e) {
						
			$(this).oembed($(this).attr("href"), { vimeo: { width: 640, height: 360, "color": "82bc3f", portrait: false, byline: false, autoplay: true } }, function(container, oembed) {
				
				container.colorbox({ html: oembed.code, open: true, width:640, height: 392, opacity:0.75 });
			});
	
			return false;
		});
		//replace movie preview placeholder images with flash
		//$("#video img").RNFlash({ width: 640, height: 380, version: 9, wmode: "opaque" });
	}
	

});


function highlightCategory(the_url) {
	var ctg = $("#linkbrowser li a[href='"+the_url+"']");
	ctg.addClass("active");
}

function removeHighlight() {
	$("#linkbrowser li a").removeClass("active");
}