// Mega Menu

$(document).ready(function() {
	
	
	
	$('ul.topNavUl li.topNavRow').hover(function(){
               $(this).addClass('over');
			   $(this).children("div.dropdown").show();
    }, function() {
               $(this).removeClass('over');
			   $(this).children("div.dropdown").hide();
    });
	
	
	var dropdownWidth
	$("div.dropdown").each(function(){
			dropdownWidth = 0;		
			$(this).children('ul').each(function(){				
						dropdownWidth = dropdownWidth + parseInt($(this).css('width'));
						
						dropdownWidth = dropdownWidth + parseInt($(this).css('padding-right'));
			});
					
			$(this).css('width',dropdownWidth);
	});
	

	$("div.dropdown").hide();

});

