/*

File: Out of the Black Javascript
Author: Rocketday

*/

// Initiate page fade
$(document).ready(function() {
	if (window.location != "http://www.outoftheblack.org/")
		jQuery('div#darkcontentarea').hide();
});

function fadeMovie()
{
//	jQuery('div#darkcontentarea').fadeOut(2000);

	window.document.location.href = 'http://www.outoftheblack.org/artworks/';
}

function showMovie()
{
	jQuery('div#darkcontentarea').show();
}
