$(function()
	{
		$('#left-menu-bg div.left-menu').hover(
			function()
			{
				$(this).stop().animate({left:'-15px'});
			},
			function()
			{
				$(this).stop().animate({left:'0px'});
			}
		);
	}

);

$(function()
	{
		$('div.center-menu').hover(
				function()
				{
					$(this).stop().animate({opacity : 1});
					$(this).children('div.menu-label').stop().animate({left : '20px', top : '30px'});
				},
				function ()
				{
					$(this).stop().animate({opacity:.8});
					$(this).children('div.menu-label').stop().animate({left : '12px', top : '50px'});
				}
		);
	}
);

$(function()
	{
		$('div.#panel-discount').hover(
				function()
				{
					$(this).stop().animate({opacity : 1});
					$(this).children('p').stop().animate({left : '35px', top : '40px'});
				},
				function ()
				{
					$(this).stop().animate({opacity:.8});
					$(this).children('p').stop().animate({left : '23px', top : '60px'});
				}
		);
	}
);

$(function()
	{
		$('div.#panel-offer').hover(
				function()
				{
					$(this).stop().animate({opacity : 1});
					$(this).children('div#panel-offer-title').stop().animate({left : '40px', top : '45px'});
				},
				function ()
				{
					$(this).stop().animate({opacity:.8});
					$(this).children('div#panel-offer-title').stop().animate({left : '20px', top : '60px'});
				}
		);
	}
);

