// Preloader function
jQuery.preloadImages = function()
{
	for(var i = 0; i < arguments.length; i++)
	{
		$("<img>").attr("src", arguments[i]);
	}
}

$(function() {

	// IE6 PNG Fix for Backgrounds
	function ie6png(img)
	{
		if($.browser.msie && $.browser.version < '7') {
			$('#buy-content').css('background-image','none');
			$('#buy-content').css('filter',"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='"+img+"');")
		}
	}
	
	// Normal (non-rollover) state
	function buyfirst()
	{
		var img = '../images/buy-first.png';
		
		$('#buy-content').css('background-image','url(' + img + ')');
		$('#buy-content').css('top', 0);
		$('#buy-content').css('left', 280);
		
		ie6png(img);

		$('#content-1disc-theatrical').hide();
		$('#content-1disc-unrated').hide();
		$('#content-2disc-unrated').hide();
		$('#content-bluray').hide();
	}
	
	// Preload the rollover images
	$.preloadImages(
		"../images/buy-1-disc-theatrical.png",
		"../images/buy-1-disc-unrated.png",
		"../images/buy-2-discs.png",
		"../images/buy-bluray.png",
		"../images/buy-menu-on.jpg"
	);
	
	// Buy 1 Disc Theatrical
	$('#buy-menu-1disc-theatrical').hover(
		function() {
			var img = '../images/buy-1-disc-theatrical.png';
			
			$('#buy-content').css('background-image','url(' + img + ')');
			$('#buy-content').css('top', 25);
			$('#buy-content').css('left', 280);
			
			ie6png(img);
			$('#content-1disc-theatrical').show();
		}, function() { buyfirst(); }
	);
	
	// Buy 1 Disc Unrated
	$('#buy-menu-1disc-unrated').hover(
		function() {
			var img = '../images/buy-1-disc-unrated.png';
			
			$('#buy-content').css('background-image','url(' + img + ')');
			$('#buy-content').css('top', 25);
			$('#buy-content').css('left', 280);
			
			ie6png(img);
			$('#content-1disc-unrated').show();
		}, function() { buyfirst(); }
	);
	
	// Buy 2 Disc Unrated
	$('#buy-menu-2disc-unrated').hover(
		function() {
			var img = '../images/buy-2-discs.png';
			
			$('#buy-content').css('background-image','url(' + img + ')');
			$('#buy-content').css('top', 45);
			$('#buy-content').css('left', 285);
			
			ie6png(img);
			$('#content-2disc-unrated').show();
		}, function() { buyfirst(); }
	);
	
	// Buy Blu-ray
	$('#buy-menu-bluray').hover(
		function() {
			var img = '../images/buy-bluray.png';
			
			$('#buy-content').css('background-image','url(' + img + ')');
			$('#buy-content').css('top',15);
			$('#buy-content').css('left',280);
			
			ie6png(img);
			$('#content-bluray').show();
		}, function() { buyfirst(); }
	);
	
	
	// Add click action to thumbnails on gallery
	$('#thumbs img').click(function() {
		var imgsrc = $(this).attr('src');
		$('#fullimage').attr('src', imgsrc);
	});
	
	// Mobile popup window
	$('#mobilelink').click(function() {
		$.jqURL.loc($(this).attr('href'), {w:400,h:425,wintype:'_blank'});
		return false;
	});
	
	// Theatrical Site popup 
	$("#theatrical-site").click(function() {
		$.jqURL.loc($(this).attr('href'), {w:990,h:670,wintype:'_blank'});
		return false;
	});

});