// JavaScript Document

	$(document).ready(function() {
							   
	 $("a.viewcart").click(function(){
		 tb_show('WATCH-OUT DESIGN', 'http://www.webloft.ca/shop/shopNew.asp?siteid=327&lang=&TB_iframe=true&height=400&width=800', '','FERMER')						 
	    })
				   

				$("#iddetail").change(function() {
				    strSplit = $("select#iddetail").val().split("|");
					theID = strSplit[0];
					theText = strSplit[1];
					$("h6").html(theText);	
					$("#boxsize").html('<h2>IDPRODUCT: ' + theID + '</h2>' + '<p>' + theText + '</p>');	
					return false;
				 } );
	   
	   
				 $(".add2cart").click(function(){
					 strSplit = $("select#iddetail").val().split("|");
					 theID = strSplit[0];
					 tb_show('WATCH-OUT DESIGN', 'http://www.webloft.ca/shop/shopNew.asp?siteid=327&idproduit=&iddetail=' + theID + '&lang=&TB_iframe=true&height=400&width=800', '','FERMER')					 
					})
	   
	  
	  });



