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