$(function() {
	
	$('#adoption_bar div img').hover(
		function() {
			$('#adoption_bar .animal_tip').hide();
			$(this).parents('a:first').siblings('.animal_tip').fadeIn('slow',function() {
				
//				if(!$.support.cssFloat) {
//					var zIndexNumber = 1000;
//					$('#header,#content').each(function() {
//						$(this).css('zIndex', zIndexNumber);
//						zIndexNumber -= 10;
//					});
//				}
				
			});
		}
		,function() {
			$(this).parents('a:first').siblings('.animal_tip').hide();
		}
	)
});
