// TOP MENU
$(document).ready(function () 
	{	
		$('#head_menu li:has(li) > a').addClass('more');
		//$('a.more').append('<span class="arrow">&nbsp;&nbsp;&raquo;</span>');
		$('#head_menu li').hover(function () {
			$(this).find('ul:first').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).addClass('active_list');
		}, function () {
			$(this).children('ul.active_list').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).removeClass('active_list');
		});	
		 $("#head_menu li:first-child").css("marginLeft","12px");
		 $(".sub li:first-child").css("marginLeft","0px");
		 
	});
