//in order to keep the highlighted state of Games, Community, Donwloads, News and Support when user scrolls through menu, use this jQuery function
//(when rolled over, add a class to the button that will keep it highlighted, and upon roll out, remove the class using Javascript
$(function(){
	$('#MainMenu .games_menu').hover(function(){$('.games_button').addClass('games_active')},function(){$('.games_button').removeClass('games_active')});
	$('#MainMenu .community_menu').hover(function(){$('.community_button').addClass('community_active')},function(){$('.community_button').removeClass('community_active')});
	$('#MainMenu .news_menu').hover(function(){$('.news_button').addClass('news_active')},function(){$('.news_button').removeClass('news_active')});
	$('#MainMenu .support_menu').hover(function(){$('.support_button').addClass('support_active')},function(){$('.support_button').removeClass('support_active')});
});