function openNewWindow(theURL, width, height) { //v2.0
	var winl = (screen.width - width) / 2; //center screen horizontal
	var wint = (screen.height - height) / 2; //center screen vertical
window.open(theURL,'','width='+width+',height='+height+',top=' + wint + ',left=' + winl+',resizable=0,scrollbars=0');
}

jQuery.noConflict();
(function($){
	$(function(){
		$('input.button').each(function(){$(this).replaceWith('<button id="'+ this.id +'" name="'+ this.name +'" type="'+ this.type +'"><span><span>'+ $(this).attr('value') +'</span></span>');});
		$('#nav li:has(ul)').hover(function(){$(this).addClass('sfhover');}, function(){$(this).removeClass('sfhover');});		  
		$('ul.nav li:has(ul)').hover(function(){$(this).addClass('sfhover');}, function(){$(this).removeClass('sfhover');});		  
	});
})(jQuery);