$(document).ready(function(){
	$(".carousel").each(function(i){
		$(this).before('<img src="gfx/arrow-featured-left.gif" width="11" height="88" class="fl mt30 mr5 ml20 prev prev'+i+'" alt="Précédents" />').after('<img src="gfx/arrow-featured-right.gif" width="11" height="88" class="mt30 ml5 mr20 next next'+i+' fr" alt="Suivants" />').jCarouselLite({ btnNext: ".next"+i, btnPrev: ".prev"+i, visible: 7, easing: "easeInCubic" });
	});
	if($("#tailles.nosize").length) {
		$("#tailles li:first").addClass("on");
		$("#option_dispo").text($("#tailles li:first").hasClass('dispo_1') ? "en stock" : "sous 1 à 3 semaines");
		$("#attrcomb").val($("#tailles li:first").attr("id"));
	}
	else {
		$("#tailles > li").click(function(i){
			$("#tailles > li.on").removeClass("on");
			$(this).addClass("on");
			$("#option_selected").text($(this).text());
			$("#option_dispo").text($(this).hasClass('dispo_1') ? "en stock" : "sous 1 à 3 semaines");
			$("#attrcomb").val($(this).attr("id"));
		});
	}

	$("#cart_quantity").submit(function(){
		if($("#attrcomb").val()=="") { Boxy.alert("Veuillez choisir une taille.", null, {title: 'Message'}); return false; }
		//if(!$("#tailles > li.on").hasClass('dispo_1')) { Boxy.alert("Produit ou taille indisponible.<br />Pour plus de précisions sur la disponibilité des produits, n'hésitez pas à <a href='/Ruby/contact.html'>  nous contacter ici</a>.", null, {title: 'Message'}); return false; }
		return true;
	});


  $('.boxy').boxy();






});


