if (jQuery.browser.msie){
	$(document).ready(function(){
		$('#menu-color ul li a').mouseenter(function (){
			//show mouseover
			if(!$(this).parent().hasClass('active')){
				$(this).children('.mouse-over')
				.css({top: '0'})
				.show();
			}
		}).mouseleave(function(){
			//hide the mouseovers
			if(!$(this).parent().hasClass('active')){
				$(this).children('.mouse-over')
				.css({top: '-9'}).hide(); 
			}
		});
		
	});	
}
else
{
	$(document).ready(function(){
		$('#menu-color ul li a').mouseenter(function (){
			//show mouseover
			if(!$(this).parent().hasClass('active'))
			{
				$(this).children('.mouse-over')
				.css({display: 'block'})
				.css({opacity: 0.0})
				.animate({top: '0', opacity: 1.0}, 100).pngFix( {blankgif: 'gfx/clear.gif'} );
			}
		}).mouseleave(function(){
			//hide the mouseovers
			if(!$(this).parent().hasClass('active')){
				$(this).children('.mouse-over')
				.animate({top: '-9', opacity: 0.0}, 300, function(){
					$(this).css({display: 'none'});
				}) 
			}
		});
		
	});	
}
