function blurAnchors(){
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();};
}
}
}

window.onload = blurAnchors;

function openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

$(document).ready(function(){

	jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
		return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback); 
	};

	$("a.submenu").click(function(){
		$("a.submenu").next().slideUp();	
		$(this).next().slideFadeToggle("slow");
	}).next().hide();

	$("div.sublimiter").hide();
	$("a.selected").next().show();
	
});
