$(document).ready(function(){
	$("#a_cerca").click(function() {
		$("#box_cerca_vuoto").flip({ direction: 'rl',speed: 250,bgColor: '#000000', color: '#000000', content:$("#box_cerca") });
		return false;
	});	

	// Collezioni
	$('span#apri_tendina_design').click(function() {
		apriTendina($(this));
	});
	$('span#apri_tendina_classical').click(function() {
		apriTendina($(this));
	});
	$('span#apri_tendina_professional').click(function() {
		apriTendina($(this));
	});
	$('span#apri_tendina_doorplanet').click(function() {
		apriTendina($(this));
	});	
	function apriTendina(e) {
		var el = e.parent().parent().parent().children('div.tendina');
		if (el.css('display')=='none') {
			el.slideDown(180);
			e.html('Chiudi');
		} else {
			el.slideUp(180);
			e.html('Vedi tutti i prodotti');	
		}	
	}
	
	// Collezione
	$('#slideshow').serialScroll({
		items: 'li',
		prev: '#prev',
		next: '#next',
		offset: 0, //when scrolling to photo, stop 230 before reaching it (from the left)
		start: 0, //as we are centering it, start at the 2nd
		duration: 300,
		force: true,
		stop: true,
		lock: false,
		cycle: false, //don't pull back once you reach the end
		jump: false, //click on the images to scroll to them
		step: 1,
		interval: 5000
	});
	$('img.tooltip').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		showBody: " - ", 
		fade: 250 
	});	
});