	$(document).ready(function(){
        $(".sf-menu").supersubs({ 
            minWidth:    12,   
            maxWidth:    27,   
            extraWidth:  1			
        }).superfish();
		$(".mswitch").hover(
			function () {
				orig = $(this).css("background");
				over = orig.replace("index","menuswitch");
				$(this).css("background",function(){
					return over;
				});
			},
			function () {
				$(this).css("background",function(){
					return orig;
				});
			}
		);
		$(".mswitch").click(function(){
			window.location = $(this).find("a").attr("href");
		});
		/*$(".mswitch a").click(function(){
			reset = $(this).parents(".mswitch").css("background").replace("menuswitch","index");
			$(this).parents(".mswitch").css("background",reset);
		});*/
    }); 
	$(window).unload(function() {
		$(".mswitch").css("background",$(this).css("background").replace("menuswitch","index"));
	});
