
$(document).ready(function(){

    if($.browser.msie&&$.browser.version=='6.0'){
        $('#header .main').removeClass('activable');
    }

    $('.submenu').parent().mouseleave(function(){
            $(this).children('.submenu').fadeOut(300);
            $(this).children('a').removeClass('active');
            $(this).addClass('hover');
            $(this).children('a').removeData('toogle');
        });
        
    $('#menu3,#menu4').bind('click',function(){
        if($(this).data('toogle')==undefined){
            $(this).addClass('active');
            $(this).parent().removeClass('hover');
            $(this).next().slideDown(200);
            $(this).data('toogle','+');
        }else{
            $(this).removeClass('active');
            $(this).parent().addClass('hover');
            $(this).next().fadeOut(400);
            $(this).removeData('toogle');
        }
    });	
	
	var hash = window.location.hash;
	if(hash!=''&&hash!='#') window.location.hash = hash;	
});


