// JavaScript Document
/*jQuery(function() {
	jQuery('#main_menu li').each(function() {
        var $this = jQuery(this);    //przypisujemy aktualnie przetwarzany element do zmiennej
        var currentPadding = $this.css('padding-top');  //przypisujemy aktualny padding

        $this.mouseenter(function() {   //przypisujemy zdarzenie po najechaniu kursorem
            $this.stop();   //zatrzymujemy wszystkie aktualne animacje na tym elemencie

            $this.animate({
                paddingTop: 10   //ustawiamy cel naszej animacji
            }, 300);    //oraz jej długość
        });

        $this.mouseleave(function() {   //przypisujemy zdarzenie po usunięciu kursora z elementu
            $this.stop();   //zatrzymujemy wszystkie aktualne animacje na tym elemencie

            if($this.attr('class') != 'checked')
            {
	            $this.animate({
	                paddingTop: currentPadding  //ustawiamy cel naszej animacji
	            }, 500);    //oraz jej długość
            }
        });
    });
});*/

jQuery(function() {		
		
	// initialize scrollable with mousewheel support
	jQuery(".scrollable, .scrollable2").scrollable({ vertical: true });	
	
});
