$(document).ready(function(){

	$('#nav_sites').hide();
	$('#nav_global #nav_select').hover(function(){
		if(!$('#nav_sites').is(':animated')){
			$(this).addClass('active');
			$('#nav_sites').addClass('active');
			$('#nav_sites').slideDown(400);
		}
	},
	function(){
		$('#nav_sites').slideUp(400);
		$(this).removeClass('active');
	});

	if ($.browser.msie && $.browser.version <= 6 ){
		$('#offering .info').hide();
		$('#offering ul li').hover(function(){
			$(this).find('.overlay').hide();
			$(this).find('.info').show();
		},
		function(){
			$(this).find('.info').hide();
			$(this).find('.overlay').show();
		});
	}
	else{
		$('#offering .info').hide();
		$('#offering ul li').hover(function(){
			if(!$(this).find('.overlay:first').is(':animated')){
				$(this).find('.overlay:first').slideUp(400);
				$(this).find('.overlay h2:first').fadeOut(400);
				$(this).find('.info:first').fadeIn(400);
			}
		},
		function(){
			$(this).find('.overlay:first').slideDown(400);
			$(this).find('.overlay h2:first').fadeIn(400);
			$(this).find('.info:first').fadeOut(400);
		});
	}
});