$(function(){
	$("#headright li a").hoverIntent(makeFade, makeSolid);
	
	$(".fancy").fancybox({
		'hideOnContentClick':true,
		'overlayShow':true,
		'overlayOpacity':0.8
	});
});

var config = {    
     sensitivity: 3,
     interval: 300, 
     over: makeFade,
     timeout: 300,
     out: makeSolid 
};

function makeFade() {
	var menu = $(this).attr("rel");
	var notme = $("#headright li a[rel!='"+menu+"']");
	// $(notme).css("color","#ccc")
	$(notme).animate({
		color:"#ccc"
	});
}
function makeSolid() {
	$("#headright li a").css("color","#666");
}

function placeDiv(title) {
	$("#content").after("<div id=\"videotitle\">" + title + "</div><div id=\"video\"><p>Playback of this video requires at least Flash Player 8.</p><p>Please install the flash player. <a href=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\">Flash Player</a></p><p class=\"jm_noscript\">Please activate javascript to detect your media plugins.</p><p class=\"jm_oldbrowsers\">Older browsers, also IE/Mac, are not supported. Please update to a standards compliant browser.</p></div>");
}

function removeDiv() {
	$("#video, #videotitle, .jm_replaced").remove();
}

function showVideo(title, which) {
	removeDiv();
	placeDiv(title);
	$("#video").jmedia(
		{version:"8,0"},
		{src:"/img/tv/" + which,
		width:"624px",
		height:"464px",
		maintainaspect:"true"
	});
}
