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