$(document).ready(doStuff);

function doStuff() {
	if ($("#prod_tabs").size() == 1) $("#prod_tabs").tabs().show();
	if ($("#can_con_tabs").size() == 1) $("#can_con_tabs").tabs().show();
	imagePopup();
}




function imagePopup() {
	$(".product_photos_additional, .transformer_highlights").click(function(event){
		event.preventDefault();
		var imgStr = $(this).attr("href");
		imgUrl = imgStr.substr(0,imgStr.indexOf("?w="))
		imgW = Number(imgStr.substring(imgStr.indexOf("?w=")+3,imgStr.indexOf("&h="))) + 15;
		imgH = Number(imgStr.substr(imgStr.indexOf("&h=")+3)) + 15;
		var imgTitle = $(this).attr("title");
		var html = "";
		html += "<title>"+imgTitle+"</title>";
		html += "<img src='"+imgUrl+"' alt='"+imgTitle+"' />";
//		html += "<br /><br />";
//		html += "<span><strong>"+imgTitle+"</strong></span>";
		var imgWindow = window.open("","","location=no,width="+imgW+",height="+imgH+"");
		imgWindow.document.write(html);
		imgWindow.focus();
	});
}





function addtocart(v_prod_id) { window.open("index.php?module=add_to_cart&prod_id="+v_prod_id+"&quantity="+document.add_to_cart.quantity.value,"addtocart","width=420, height=550, toolbar=no, scrollbars=no, resizable=no, menubar=no, status=no, directories=no, location=no, screenX=200, left=350, screenY=60, top=150"); }

function addtoCart(v_rel_prod_id) { window.open("index.php?module=add_to_cart&prod_id="+v_rel_prod_id+"&quantity=1","addtocart","width=420, height=550, toolbar=no, scrollbars=no, resizable=no, menubar=no, status=no, directories=no, location=no, screenX=200, left=350, screenY=60, top=150"); }

function askquestion(v_prod_id) { window.open("index.php?module=ask_a_question&prod_id="+v_prod_id,"askquestion","width=420, height=590, toolbar=no, scrollbars=no, resizable=no, menubar=no, status=no, directories=no, location=no, screenX=200, left=350, screenY=60, top=150"); }

function emailfriend(v_prod_id) { window.open("index.php?module=email_a_friend&prod_id="+v_prod_id,"emailfriend","width=420, height=670, toolbar=no, scrollbars=no, resizable=no, menubar=no, status=no, directories=no, location=no, screenX=200, left=350, screenY=60, top=150"); }

function notenoughstock(v_prod_qty_in_stock) {
//	if (document.getElementById("quantity").value > v_prod_qty_in_stock)
//		alert("Please enter a quantity less than or equal to " + v_prod_qty_in_stock);
}

