
jQuery(document).ready(function($) {
	
	

	
	$('ul.superfish').superfish({ 
		delay: 600, // delay on mouseout
		animation: {opacity:'toggle', height:'show'}, // fade-in and slide-down animation
		speed: 350, // faster animation speed
		autoArrows:false
	}); 

		
	
	<!-- PrettyPhoto Settings-->
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal', /* fast/slow/normal */
		padding: 40, /* padding for each side of the picture */
		opacity: 1.00, /* Value betwee 0 and 1 */
		showTitle: false, /* true/false */
		allowresize: true, /* true/false */
		counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
		theme: 'dark_square', /* light_rounded / dark_rounded / light_square / dark_square */
		callback: function(){}
	});



	
// TABS
$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("ul.tabs").tabs("div.panes > div");
});




  //SLIDER

//$("div.scrollable").scrollable({size: 1, vertical:false, clickable:false, onBeforeSeek: function() { this.getItems().fadeTo(200, 0.2);}, 
//         onSeek: function() { 
//            this.getItems().fadeTo(400, 1); 
//        } }).autoscroll({autoplay: false}).navigator();

$("div.scrollable").scrollable({size: 1, circular: false }).autoscroll({autoplay: false}).navigator();


// FADE-to Settings
	

	$(".zoom,.zoom-mov,.social img").hover(function(){
		$(this).stop().animate({opacity: 1.0}, 400 );
	},
	function () {
		$(this).stop().animate({opacity: 0.8}, 300); 
	});
	
	
<!-- tool tip  -->




$("#tooltip p").tooltip({ 
   	tip: '.direction-icons',
    opacity: 0.7, 
	effect: 'slide'
 
});





});


