var timeout;
$(window).load(init);
function init()
{

//JQuery ready is quicker than onload
$("input.stdinput,textarea.stdinput").focus(function() {$(this).addClass("stdinput-sel");}).blur(function() {$(this).removeClass("stdinput-sel");});
$("#prodselector li").mouseover(function() {$(this).addClass("jselected");}).mouseout(function() {$(this).removeClass("jselected");});
$("#checkout").submit(function() { if (!confirm('Confermi l\'invio dell\'ordine')){ return false;}else{return this;} });
if (timeout) clearTimeout(timeout);
var timeout = setTimeout(nascondiHead, 5000);				
}

function nascondiHead()
{
$("#frase").fadeOut("slow");
}
