﻿$(document).ready(function() {
    // menu
    $('.menu ul li ul').hover(function() {
        $(this).parent('li').children('a')
                .css('background-color', '#99CCFF')
                .css('background-image', 'none')
                .css('color', '#0066CC');
        $(this).parent('a')
                .css('background-color', '#99CCFF')
                .css('background-image', 'none')
                .css('color', '#0066CC');

    },
	    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', '#96dcf6')
                .css('color', '#000');
    },
	function() {
	    $(this).parent('li').children('a')
	        .removeAttr("style");
	});
});
