$(document).ready(function() {
	$("#topnav ul > li").hover(function() {
		if(!$(this).hasClass('disable_hover')) {
			$(this).addClass('hover');
		}
	}, function() {
		$(this).removeClass('hover');
	});
	
	$("#topnav ul li:first-child").addClass('first');
	$("#topnav ul li:last-child").addClass('last');
});

var newWindow = null;

function openNewWindow(URL, winName, features){
	var xPos = (screen.width-500)/2;
	var yPos = (screen.height-375)/2;
	
	newWindow=window.open(URL,winName,features);
	newWindow.moveTo(xPos,yPos);
	newWindow.focus();
}