 $(document).ready(function(){
    $("#tabs-block ul#tabs").tabs("div.panes > div.item"); 
    $("#forgot-pass").bind("click", forgotpass); 
    
  		//funzione fumetti
  		$(".logo_supplier").tooltip({
	
			//fissa la posizione: h,l
			offset: [10, 2],
			
			effect: 'slide',
			
			lazy:false
			
			}).dynamic({ bottom: { direction: 'down', bounce: true } });

			//funzione slideshow

			$(".slidetabs_ss").tabs(".images_ss > div", {
	
				// enable "cross-fading" effect
				effect: 'fade',
				fadeOutSpeed: "slow",
			
				// start from the beginning after the last tab
				rotate: true,
				
			
			// use the slideshow plugin. It accepts its own configuration
			}).slideshow();


});

function forgotpass(){
	var email;
	email = $("#username").val();
	if (email.length < 6){
		alert("Per favore, inserite il vostro indirizzo email nel campo username per ricevere messaggio con la password");
		return false;
	};
	$.post("forgot.asp", {e:email}, function(data){alert(data)});
		
};

