$(document).ready(function(){
 // custom functions
	$("div.menu_item").hover(function() {
		$(this).addClass("menu_over");
		$(this).children().addClass("text_over");
	},function(){
		$(this).removeClass("menu_over");
		$(this).children().removeClass("text_over");
	});
	$("div.menu_item").click(function () {
		window.location = $(this).children().attr("href");
	});
});