//hide email addresses
emailE='marebay.com'
emailE=('info' + '@' + emailE)

//highlight menu
var ready;
varPage1 = ""
varPage2 = ""
varPage3 = ""
varPage4 = ""
varPage5 = ""
varPage6 = ""
varPage7 = ""
varPage8 = ""


if (self.location.href == "http://web2/marebay/") {varPage1 = 'active'}
if (self.location.href == "http://marebay.com") {varPage1 = 'active'}
if (self.location.href == "http://www.marebay.com") {varPage1 = 'active'}

if 	(self.location.href.indexOf('about')!= -1)	{ varPage2 = 'active' }
if 	(self.location.href.indexOf('news')!= -1)	{ varPage3 = 'active' }
if 	(self.location.href.indexOf('press')!= -1)	{ varPage4 = 'active' }
if 	(self.location.href.indexOf('blog')!= -1)	{ varPage5 = 'active' }
if 	(self.location.href.indexOf('stockists')!= -1)	{ varPage6 = 'active' }
if 	(self.location.href.indexOf('service')!= -1)	{ varPage7 = 'active' }
if 	(self.location.href.indexOf('contact.asp')!= -1)	{ varPage8 = 'active' }
ready=true;

// end highlight menu



// product image swaps

var varThumb2Pop;
varThumb2Pop = ""

function imgOnBig(imgName,imgNn,thumb) {
	//alert(document.images[imgNn].src)
	document.images[imgNn].src = "uploads/images_products" + thumb + "/" + imgName 
	top.varThumb2Pop = thumb   
	//alert(varThumb2Pop);
}
// end of product image swaps




function PopUp(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function ToggleItem(myItem) {
	if (myItem.style.visibility != 'hidden') {
		HideItem(myItem);
	} else {
		ShowItem(myItem);
	}
	return false;
}
function ShowItem(myItem) {
	myItem.style.visibility = 'visible';
	myItem.style.display = '';
}
function HideItem(myItem) {
	myItem.style.visibility = 'hidden';
	myItem.style.display = 'none';
}

