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(){
		var IE = $.browser.msie;
		var IE6 = ($.browser.msie && $.browser.version<7);
		var hideSelect = function(){$('select').css({visibility:'hidden'});}
		var showSelect = function(){$('select').css({visibility:'visible'});}
		$('input.button').each(function(){$(this).replaceWith('<button id="'+ this.id +'" name="'+ this.name +'" type="'+ this.type +'"><span><span>'+ $(this).attr('value') +'</span></span>');});
		if (IE){
			$('#nav li').hover(function(){$(this).addClass('sfhover'); if(IE6){hideSelect();}}, function(){$(this).removeClass('sfhover'); if(IE6){showSelect();}});		  
			$('ul.nav li').hover(function(){$(this).addClass('sfhover');}, function(){$(this).removeClass('sfhover');});		  
		}
	});
})(jQuery);