/******************************************************************************
Name:    Basic Functions
Version: 1.0 (September 11 2011)
Author:  Sebastian Brink
Contact: http://www.quadrifolia.de
******************************************************************************/


/******************************************************************************
  stopper: casting
******************************************************************************/

function stopper_casting() {
	
	if ($('casting-stopper')) {
		document.observe('lightview:loaded', function() {
			Lightview.show({
				href: '/stopper/casting/stopper.php',
				rel: 'iframe',
				title: '',
				caption: '',
				options: {
					width: 844,
					height: 424,
					topclose: true
				}
			});
		});
	}
	
}

function show_news() {
	window.location = "http://www.nuroma.de/index.php?page=news";
}

/******************************************************************************
  init
******************************************************************************/

document.observe("dom:loaded", function() {
	
	// check for first load to display stopper
	// if ( (!readCookie('popUpDisplayed')) || (readCookie('popUpDisplayed') == 0) ) {
	// 	createCookie('popUpDisplayed',1,30);
	// 	stopper_casting();
	// }

});

// --- END
