
function init(){
	if($('productsPage')) $('innerBg').setStyle('height',580);
}


function showThumb(e,x){
	
	var d=$(e.id).getCoordinates(),o=$('productsThumb');
	
	o.style.display='';
	
	o.style.left=d.left+'px';
	o.style.top=d.top+'px';
	
	o.innerHTML='<img src="../product-details/gallery/'+x+'/thumb.jpg" width="96" height="100" onmouseout="this.style.display=\'none\';" onclick="location.href=\'../product-details/index.php?id='+x+'\'" />';
	
}

var subMenuShown=false;
function showSubMenu(e){
	
	if(subMenuShown){
		
		$('subMenu').style.display='none';
		subMenuShown=false;
		
	}
	else{
		
		var d=$(e.id).getCoordinates(),o=$('subMenu');
		
		o.style.display='block';
		subMenuShown=true;
		
		o.style.left=d.left-10+'px';
		o.style.top=d.top-10+'px';
		
	}
	
}

function changeLocation(){
	
	if(confirm("You will be leaving the current website and all items on your cart will be cleared.\n\nDo you still want to continue?")){
		
		location.href='/set-cookie.php?clear=true&location='+$('locationSelector').value;	
		
	}
	
}

function goToLocation(){
	
	location.href='/set-cookie.php?location='+$('locationSelector').value;	
	
}