jQuery(function($) {
	
	if ($.browser.version < 9) {
		$('#services > div').hover(
			function() {
				$(this).find('div.content-container').show();
			},
			function() {
				$(this).find('div.content-container').hide();
			}
		).find('div.content-container').hide();
	}
	
	$('#team li').hover(function() {
		$(this).find('img').css('left', 0).animate({left: '-215px'}, 300);
	}, function() {
		$(this).find('img').animate({left: 0}, 300);
	});
	
});
