// JavaScript Document
$(function() {
		$('.button_container').hover(function() {
		$(this).children('.front').stop().animate({"left" : "400px"}, 1000);
		}, function() {
		$(this).children('.front').stop().animate({"left" : "0px"}, 2000);
	});
	});

