// JavaScript Document

//******************************IMPRESSUM POP-UP***********************************//
function myPopup2() {
window.open( "http://www.thekube.co.uk/salt/html/impressum.php/", "myWindow",
"status = 1, height = 300, width = 300, resizable = 0" )
}

//******************************ACCORDION***********************************//
function checkIfAccordionsExist()
	{
	if(document.getElementById("vertical_container") == null)
		{
		//DO STUFF HERE IF THE ACCORDIAN IS NOT ON THE PAGE....
		}
	else
		{
		// ONLY LOAD THE ACCORDIAN FUNCTION IF THE ID EXISTS ON THE PAGE....	
			
		loadAccordions();
	
		}	
	}
	
	function loadAccordions() 
		{
		var firstbottomAccordion = new accordion('vertical_container');
		firstbottomAccordion.activate($$('#vertical_container .accordion_toggle1')[0]);


		var secondbottomAccordion = new accordion('vertical_container2');
		secondbottomAccordion.activate($$('#vertical_container2 .accordion_toggle')[0]);
		}	
	
setTimeout('checkIfAccordionsExist();', 1000);


