// JavaScript Document
$(document).ready(function(){
	$('.menu_item').hover(
		function(){
			$(this).find('a').addClass("over");
	},
		function(){
			$(this).find('a').removeClass("over");
	});
	$('.menu_item:not(.selected)').click(
		function(){
			window.open($(this).find('a').attr("href"),'_self');
			$(this).find('a').removeClass("over");
			return false;
	});
});