$(document).ready(function(){ 

//** Superfish drop-down controls

	var menu_options = {
		delay:			400,								// delay on mouseout 
	//	animation:		{opacity:'show',height:'show'},		// fade-in and slide-down animation
		animation:		{opacity:'show'},					// fade-in only animation
		speed:			'normal',							// animation speed 
		autoArrows:		true,								// generation of arrow mark-up 
		dropShadows:	true,								// drop shadows
		disableHI:		true								// set to true to disable hoverIntent.js detection
	}
	
	if ($.browser.msie) { // Opacity animation doesn't work in ie so use a vertical slide instead
	   menu_options.animation = {height: 'show'};
	   menu_options.speed = 'fast';
	}
	
	$('#dh-nav-dropdowns ul.nav').superfish(menu_options);
	
	
// homepage slider
   $("#featured-videos > ul > li+li").css('display', 'block');
   
   $("#featured-videos").easySlider({
		auto: true,
		continuous: true,
		pause: 10000
	});
	
//** tooltip
	
	$('ul.list a').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		fixPNG: true,
		showBody: " - ",
		extraClass: "pretty fancy",
		top: -15,
		left: 5
		});

/* end */
}); 
