function toggle(id) {
	if (!$("#menu_"+id).is(":hidden")) {
		$(".subnav").slideUp("slow");
	} else {
		$(".subnav").slideUp("slow");
		$("#menu_"+id).slideToggle("slow");
	}

}

$(document).ready(function(){
	$("#navigation a.l1:not(.active), #navigation span.l1:not(.active)").hover(
		function() {
			if($(this).height()>20)
				$(this).css("background", "url(/images/widgets/nav_active_" + style + "_2.gif) no-repeat");
			else
				$(this).css("background", "url(/images/widgets/nav_active_" + style + ".gif) no-repeat");
		},
		function() {
			if($(this).hasClass('back2bmr')) {
				$(this).css("background", "url(/images/widgets/nav_back2bmr_" + style + ".gif) no-repeat");
			} else {
				$(this).css("background", "none");
			}
		}
	);
});

