﻿$(document).ready(function () {
	$('.menu li:has(ul) > a').addClass('more');
	$('a.more span').append('&nbsp;&nbsp;&raquo;');
	var ddback = $('#topper2').css('background');
	$('.menu li').hover(function () {
			$(this).children('#topper2').css({'background': 'transparent url(../../images/menuBgr.png) no-repeat center top'});
			$(this).find('a:first').css({'color':'#f17021'});
			$(this).find('ul:first').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).addClass('active_list');
		}, function () {
			$(this).children('#topper2').css({'background': ddback});
			$(this).find('a:first').css({'color':'#777777'});
			$(this).find('ul.active_list').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).removeClass('active_list');
	});
});
