jQuery(document).ready(function() {

	if (thisSection==1){
		$('a.aboutus').addClass('currentMenu');
	} else {
		if (thisSection==2){
			$('a.initiatives').addClass('currentMenu');
		} else {
			if (thisSection==3){
				$('a.news').addClass('currentMenu');
			} else {
				if (thisSection==4){
					$('a.entrepreneurs').addClass('currentMenu');
				} else {
					if (thisSection==5){
						$('a.contactus').addClass('currentMenu');
					} else {
						if (thisSection==0){
							$('#baderlogo').show();
						};
					};
				};
			};
		};
	};

	
    $('.submenu').hide();
  	$('li').mouseover(function() {
            $(this).children('.submenu').show();
    });
	$('li').mouseout(function() {
            $(this).children('.submenu').hide();
    });


});
