var DantesGlobal = {};

DantesGlobal.lightBoxEnabled = false;

DantesGlobal.startSite = function() {
	DantesGlobal.initializeExternalLinks();
}

DantesGlobal.initializeExternalLinks = function() {
	$("a[rel=\"external\"]").attr("target", "_blank");
}

/*----------------------------------------------------------------------------------
	Window Utilities
----------------------------------------------------------------------------------*/

DantesGlobal.createLightBox = function() {
	if (!DantesGlobal.lightBoxEnabled) {
		var lightbox = $("<div />", {
			id: "lightBox",
			click: DantesGlobal.removeLightBox,
			css: {
				paddingTop: 235
			}
		});
		
		
		lightbox.html('<div id="foo"><div id="revealBuyButton"><a href="http://www.gamestop.com/browse/ProductMerch.aspx?groupid=578&WT.mc_id=dante" target="_parent" title="Buy Now"></a></div><iframe src="system.php" width="800" height="628" allowTransparency="true" backgroundColor="transparent" scrolling="no" frameborder="0"><p>Your browser does not support iframes.</p></iframe></div>');
		
		VideoPlayerAPI.pauseMovie();
		DantesGlobal.lightBoxEnabled = true;
		$("body").append(lightbox);
		$.get("revealed.php");
	}
}

DantesGlobal.removeLightBox = function() {
	$("#lightBox").remove();
	VideoPlayerAPI.playMovie();
	DantesGlobal.lightBoxEnabled = false;
}

$(function () {
	DantesGlobal.startSite();	
});





