function changeActiveDiv(divToActivate) {
		document.getElementById('product_product_description').style.display = 'none';
		document.getElementById('product_delivery_details').style.display = "none";
		document.getElementById('product_realted_items').style.display = "none";
		document.getElementById('product_price_guarentee').style.display = "none";
		/*document.getElementById('product_3_ways_to_but').style.display = "none";*/
		document.getElementById('product_reviews').style.display = "none";
		document.getElementById(divToActivate).style.display = "block";
		
}

function changeActiveLink(linkToActivate) {
		document.getElementById('link_product_description').style.background = "url(/images/newTab.gif) top no-repeat #23408F";
		document.getElementById('link_delivery_details').style.background = "url(/images/newTab.gif) top no-repeat #23408F";
		document.getElementById('link_realted_items').style.background = "url(/images/newTab.gif) top no-repeat #23408F";
		document.getElementById('link_price_guarentee').style.background = "url(/images/newTab.gif) top no-repeat #23408F";
		/*document.getElementById('link_3_ways_to_but').style.background = "url(/images/products/tab_top.jpg) top no-repeat #23408F";*/
		document.getElementById('link_reviews').style.background = "url(/images/newTab.gif) top no-repeat #23408F";
		document.getElementById(linkToActivate).style.background = "url(/images/newTab.gif) top no-repeat #01a0c7";
		document.getElementById(linkToActivate).style.color = "#ffffff";
}

function swapImage(imgId, imageName, imageHref, imageClass) {
//		document.getElementById(imgId).src = '/images/about2.jpg'; //imageName;
//		myElement = document.getElementById('main_image'); 
//		myElement.src = "/images/about2.jpg";		
		document["main_image"].src = imageName;
		document.getElementById("zoom").href = imageHref;
//		document.getElementById("zoom").class = imageClass;
		magicZoomInit();
}

function productSwapImage(imgId, totalImages){
		for (i = 1; i<=totalImages; i++){
			document.getElementById('product_main_image_' + i).style.display = 'none';
		}
		document.getElementById('product_main_image_' + imgId).style.display = 'block';
}

function bookmarksite(){
	if (document.all)
		window.external.AddFavorite(location.href, document.title);
	else if (window.sidebar)
		window.sidebar.addPanel(document.title, location.href, "")
}		