jQuery(document).ready(function(){			


jQuery("#Navigation div.sub").hide();
jQuery("#Navigation a.active").mouseover(function(){
jQuery("#Navigation div.active:not(div.active:eq("+ jQuery("#Navigation a.active").index(this) + "))").stop().slideUp("fast");
jQuery("#Navigation div.active:eq("+ jQuery("#Navigation a.active").index(this) + ")").stop().css("height", "auto").slideDown("slow");
});
jQuery("#Navigation a.active").click(function(){return(false);});
jQuery("#dnn_ContentPane,a.empty").mouseover(function(){
jQuery("#Navigation div.active").stop().slideUp("fast");
}); 
});


// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}


