jQuery(document).ready(function($){
	$('#menu ul li.page_item').hover(
		function () {
			$(this).addClass("hover");
			$(this).find("ul").css({width:'130px'})
			$(this).find("li").css({width:'130px'})
		},
		function () {
			$(this).removeClass("hover");
		}
	);
})
