$(function() {

	$("ul#navigation li").hover(
		function () {
			if ($(this).children('ul').length > 0) {
				$(this).addClass('active').children('ul').show();
			} else {
				$(this).addClass('active');	
			}
		}, 
		function () {
			if ($(this).children('ul').length > 0) {
				$(this).children('ul').fadeOut(150, function(){$(this).parent("li").removeClass('active')});
			} else {
				$(this).removeClass('active');
			}
		}
	);
	
	
	$("ul.intl-comps li").hover(
		function () {
			$(this).children('ul').show();
		}, 
		function () {
			$(this).children('ul').fadeOut(150);
		}
	);

});
