$(document).ready(function(){

	// Add Item
	$("#add-to-cart").submit(function(){
		$.post(v_url_rel + "store/cart.asp",$("#add-to-cart").serialize(),function(data){
			location.href = v_url_rel + "store/cart/";
		},"html");
		return false;
	});

	// Main Image Center Position
	$(window).load(function(){
		var v_mainimg_width = document.getElementById('mainimg').scrollWidth;
		if (v_mainimg_width > 0) {
			// Set main image width
			document.getElementById('mainimgp').style.width = v_mainimg_width + 'px';
			// Set main box (textbox width + mainp width)
			document.getElementById('mainprdbox').style.width = (v_mainimg_width + 240) + 'px';
		}
	});

});