$(document).ready(
		function(){
			$("#animate_left").stop().fadeTo("slow",1, function(){BarAnimate("left")});
			$("#animate_right").stop().fadeTo("slow",1, 
					function()
					{
						BarAnimate("right"); 
						$("#animate_center > div").stop().fadeIn("slow", 
							function(){
							    if ($.browser.msie){this.style.removeAttribute('filter');}
							})
					});			
			
			$("#animate_right").mouseenter(function(){BarAnimate("right")});
			$("#animate_left").mouseenter(function(){BarAnimate("left")});
		}	
	);
	function BarAnimate(d)
	{
		var offset = $("#animate_" + d).width() - $("#animate_" + d + " div").width();
		$("#animate_" + d + " div").stop().fadeTo("slow",0.7)
		.animate({left: "+" + offset}, "slow")
		.animate({left: "0"}, "fast")
		.animate({opacity: "0.35"}, "slow");
	}