﻿//$(document).ready(function() {
//    $('.menu ul li ul').hover(function() {
//        //alert($(this));
//        $(this).parent('li').children('a')
//                .css('background-color', '#ededed')
//                .css('background-image', 'none')
//                .css('color', '#575757');
//    },
//	    function() {
//	        $(this).parent('li').children('a')
//                .removeAttr("style");
//	    });

//    $('.menu ul li ul li ul').hover(function() {
//        //alert($(this));
//        $(this).parent('li').children('a')
//                .css('background-color', '#d4d4d4')
//                .css('color', '#575757');
//    },
//	function() {
//	    $(this).parent('li').children('a')
//	       .removeAttr("style");
//	});

//});

$(document).ready(function() {
    // menu
    $('.menu ul li ul').hover(function() {
        $(this).parent('li').children('a')
                .css('background-color', '#ededed')
                .css('background-image', 'none')
                .css('color', '#575757');
        $(this).parent('a')
                .css('background-color', '#ededed')
                .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");
	});
});
