$(document).ready(function(){
						   
						   
	/* TRANSPARENCE PNG POUR IE 6 */
	$(document).pngFix( );
			
	// SCROLLABLE 
	$('div.scrollable > div.items', false).cycle({
		fx: 'scrollHorz',
		timeout: 0,
		prev:   '.prev', 
		next:   '.next',
		cleartype:  true,
		cleartypeNoBg:  true
	}); 
			
	// QUOTES
	$('#quoteTxt').cycle({
		fx: 'fade',
		random:  1,
		pause:  1,
		speed:    3000
	});
			
	// LIGHTBOX
	$("a[rel^='prettyPhoto']").prettyPhoto({allowresize: false});
	
	
	
    // supprimer value de champs input txt
    $("#SignUpMail").click(function () { 
      $(this).val(""); 
    });
	$("#SignUpPass").click(function () { 
      $(this).val(""); 
    });
	$("#SignUpCode").click(function () { 
      $(this).val(""); 
    });
    

  });

