
//dropdown


$(document).ready(function(){
	
	function addMega(){
		$(this).children("div").addClass("menu_hover").removeClass("hidden");
		$(this).addClass("tab_hover");
	  } 
	 
	function removeMega(){ 
		$(this).children("div").addClass("hidden").removeClass("menu_hover");
		$(this).removeClass("tab_hover");
	  } 
	  
	var megaConfig = {     
	     interval: 10, 
	     sensitivity: 4,
	     over: addMega,
	     timeout: 100,
		 out: removeMega
	}; 
	
	$("li.mega").hoverIntent(megaConfig)


});



/*ScrollPanel*/

$(function()
{
	$('#result-pane').jScrollPane({animateTo:true, animateInterval:50, animateStep:3});		
});
