$(function() {
	
	$(document).pngFix();
	
	$("#control").bind('dblclick', function() {
		$(this).slideUp();
		return false;
	});
	
	var returntimer;
	
	$('#nav').mousemove(function(e) { 
		clearTimeout(returntimer);
		$(this).css('background-position', '' + (e.pageX - 980) + 'px 50%');
	});
	
	$('#nav').mouseleave(function() {
		var el = this;
		returntimer = setTimeout(function() {
			$(el).animate({backgroundPosition:'(-580px 50%)'}, 300);
		}, 500);
		
	});

	if ($('#graphmovie')) {
		swfobject.embedSWF("/template/theme/haydendigital/flash/graph.swf", "graphmovie", "320", "180", "9.0.0", false, false, {wmode:'opaque'});
	}
	
	$("#tactical").easySlider({
		controlsShow:	true,
		controlsFade:	true,
		vertical:		false,
		speed: 			1000,
		auto:			true,
		pause:			6500,
		continuous:		false, 
		numeric: 		true,
		numericId: 		'controls'
	});
	
});