var api = null;

function doSubmit(formID) {
	
		document.getElementById(formID).submit();
	
	}	

$(document).ready(function(){

    $("div.scrollable").scrollable({ 
        vertical:true,  
        size: 2 
    });

    $("div.scrollable-orizzontale").scrollable({ 
		next: 'a.oriz-next', 
	    prev: 'a.oriz-prev' 
    });

	api = $("div.scrollable-home").scrollable({ 
        size: 1,
		next: 'a.next-home', 
	    prev: 'a.prev-home',
        interval: 4000, 
        loop: true,  
        speed: 1000 
    });
	
	$("a.pause").click(function () {
		if ($("a.pause").attr("rel") == "play") {
			$(api).data("scrollable").stop();
			
			$("a.pause").attr("rel", "stop");
			$("a.pause").html("Play");
		} else {
			$(api).data("scrollable").play();
			
			$("a.pause").attr("rel", "play");
			$("a.pause").html("Pause");
		}
	});

	
	
	/*
$(function() {*/
        $('.thumbGallery a').lightBox(); 
		   
/*});*/

/*//////////////////////////// SEZIONE BIG TARGET ////////////////////////////////////////////////////////////////////////*/

	$('#formRicerca span').hover(function() {
       	$('#formRicerca').find('#ricercaBtn').css('background-position','bottom left');
   }, function() {
		$('#formRicerca').find('#ricercaBtn').css('background-position','top left');
    });	
	
	

/*//////////////////////// CAROUSEL ///////////////////////////////////////////////////////////////////////////////////////*/
/*
	jQuery('#mycarousel').jcarousel({
       buttonNextHTML: null,
       buttonPrevHTML: null,
	   visible: 4,
   	 	scroll: 4
    });	*/
	
	
	
});		
