$(document).ready(function() {
	//	Imposto il title come value	dell'input del bx newsletter				   
$("#regNewsletter").val($("#regNewsletter").attr("title"));
$("#regNome").val($("#regNome").attr("title"));
	$("#regNewsletter").focus( function () {
		if ($(this).val() == $(this).attr("title")) {
			 $(this).val("");
			 }
		});
	$("#regNome").focus( function () {
		if ($(this).val() == $(this).attr("title")) {
			 $(this).val("");
			 }
		});
	//	
	$("#boxShowKart").slideDown('fast');
    $.get("/code-kart/", { idl: "1", p: "1" },
   	function(data){
		$("#boxShowKart").html(data);
	});
});



