$(document).ready(function() {
	$('.menuItem, #footer a').mouseenter(function() {
		$(this).css('color','#069BFF');
	});
	$('.menuItem, #footer a').mouseleave(function() {
		if (!$(this).hasClass('selected')) {
			$(this).css('color','#F0F0F0');
		}
	});
	$('#main a').mouseenter(function() {
		$(this).css('color','#069BFF');
	});
	$('#main a').mouseleave(function() {
		$(this).css('color','#0074C1');
	});
	$(window).resize(function() {
		$('#center').css('width',$(window).width() < 960 ? '960px' : '100%');
	});
});