$(document).ready(function(){
        
        var open = null;
        var close = null;
        $('.menuBox li.withSub').find('ul').hide();
        $('.menuBox li.withSub').hover(function () {
			
			$(this).find('ul').stop().fadeTo(200,1, function () {  this.style.removeAttribute('filter'); });
		},
		function () {
			$(this).find('ul').stop().fadeOut();
		});
		
		$('.menuBox li.withSub ul li a').hover(function() {
			$(this).css({'text-decoration': 'underline'});
		},
		
		function () {
			$(this).css({'text-decoration': 'none'});
		});
        
    });
