$(document).ready(function() {
	
	

	$(".sf-menu>li").hover(
  function () {
    $(this).addClass("over");
  },
  function () {
    $(this).removeClass("over");
  }
);
	
	/*  -------------------
		SET ACTIVE MENU
		--------------------  
		
	var hash = window.location.href;
	var filename = hash.match(/.*\/(.*)$/)[1];

	$('.sf-menu>li>a').each(function(){
		 var that = $(this);
		 //that[ that.attr( 'href' ) === filename && that.attr( 'class' ) != ''    ? 'addClass' : 'removeClass' ]( 'active' );
		 
		 if($(this).attr('href') == filename){
			 $(this).parent().addClass('over')
		 }
	});
			
	*/
	
	// GLOBAL BUTTON
	
	$('#globalBt').click(function(){
		
		if($('#globaliddp-wrap').is(':visible')){
			$('#globaliddp-wrap').hide(400);
		} else{
			$('#globaliddp-wrap').show(400);
		}
		
		var mouseInside = false;

		$('#globaliddp-wrap ul').hover(function(){ 
			mouseInside=true; 
		}, function(){ 
			mouseInside=false; 
		});

		$('html').mouseup(function(){ 
			if(!mouseInside) $('#globaliddp-wrap').hide(400);
		});
		
	});
	
});


