﻿$(document).ready(function() {
    // menu
    $('.menu ul li ul').hover(function() {
        $(this).parent('li').children('a')
                .css('background-color', '#EEEEEE')
                .css('background-image', 'none')
                .css('color', '#575757');
        $(this).parent('a')
                .css('background-color', '#EEEEEE')
                .css('background-image', 'none')
                .css('color', '#575757');    
                
    },
	    function() {
	        $(this).parent('li').children('a')
                .removeAttr("style");
	        $(this).parent('a')
                .removeAttr("style");
	    });
    // menu two
    $('.menu ul li ul li ul').hover(function() {
        $(this).parent('li').children('a')
                .css('background-color', '#D4D4D4')
                .css('color', '#575757');
    },
	function() {
	    $(this).parent('li').children('a')
	        .removeAttr("style");
	});
});
