$(document).ready(function() {

	$("#src").click( function() {
		this.value = '';
	});
	
	$("#src").blur( function() {
		if( this.value.length < 3 ) this.value = 'Ricerca prodotti'; 
	});
	
	$("#src").keyup( function() {
		ricerca( this.value );
	});	
	
	$('.slideshow').cycle({
		fx: 'fade',
	});
	
	
});



function ricerca(inputString){
		
	if( inputString.length >= 3 ) {
		
		$("#src").addClass('load');
		$.ajax({
			url : "ricerca_prodotti.php",
			data: 'cerca=' + inputString,
			type: 'POST',
			dataType: 'html',
			success : function (msg, stato) {
				$('#wrapper').html(msg);
				$('#src').removeClass('load');
			},
		});
		
		
	}
}

