function createIdent() {
	swfobject.embedSWF("swf/ident.swf", "alt", "500", "200", "8.0.0", {}, {}, {bgcolor: "#000000"}, {});
}
function flvComplete() {
	$('h1').html('<div id="alt" class="h pointer" style="visibility:visible"><img src="images/title.gif" width="175" height="80" alt="The End Productions" title="" /></div>');
	$('#alt img').hide().fadeIn('slow');
	$('#alt').click(function() {
		createIdent();
		return false;
	});
}
function interact() {
	createIdent();
	$link = $('#link');
	$ltext = $('#ltext');
	$lhover = $('#lhover');
	function linkOver() {
		$lhover.show();
		$ltext.css({color:"#000"});
		//$lhover.fadeIn();
		//$ltext.animate({color:"#000"}, 'normal');
	}
	function linkOut() {
		$lhover.hide();
		$ltext.css({color:"#FFF"});
		//$lhover.fadeOut();
		//$ltext.animate({color:"#FFF"}, 'normal');
	}
	$link.hover(linkOver, linkOut);
	//$link.hoverIntent(linkOver, linkOut);
}
$(document).ready(function() {interact();});