// JavaScript Document


$(document).ready(function() { 
		var menus = $('.nav a');
		menus.removeClass('current');
		var matches = menus.filter(function () {
			return document.location.href.indexOf($(this).attr('href')) >= 0;
		});
		matches.addClass('current');
		
		$('.current').click(function(){
			return false;
		});
		
        $('ul.sf-menu').superfish({
		            delay:       500,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: true                            // disable drop shadows						 
		}); 
		var zIndexNumber = 1000;
		$(".sf-menu li li").each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
		
}); 







