
/* slider + tooltip + overlay ______________________________________*/

$(document).ready(function() {
/* chained call: scrollable().find("a").tooltip().overlay().gallery(); */
$(".scrollable").scrollable().find("a").tooltip({
	// use this single tooltip element for all trigger elements
	tip: '#tooltip'
})


//.overlay({
	// each trigger uses the same overlay with id "gallery"
	//target: '#gallery',
	// optional exposing effect with custom color
	//expose: false,
	// clicking outside the overlay does not close it
	//closeOnClick: false
// gallery plugin
//}).gallery({
	// do not use the same disabled class name as scrollable
	//disabledClass: 'inactive'
//});



});



/* Superfish Menu ____________________________________________________*/

$(document).ready(function(){ 
	$("ul.sf-menu").superfish({ 
		animation: {height:'show'},   // slide-down effect without fade-in 
		delay:     1200               // 1.2 second delay on mouseout 
	}); 
}); 

/* normal image slider ________________________________________________*/
$(document).ready(function(){	
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true
	});
});	




