$(document).ready(

function()

{

	$("#fb_click").click(function()

	{

		$("#fb").stop().animate({left: 0}, "normal");

	});;
	$("#fb").mouseleave(function()

	{

		$("#fb").stop().animate({left: -283}, "normal");

	});;

	$("#box_newsletter_click").click(function()

	{

		$("#box_newsletter").stop().animate({left: 0}, "normal");

	});;
	$("#box_newsletter").mouseleave(function()

	{

		$("#box_newsletter").stop().animate({left: -315}, "normal");

	});;


	$("#g_click").click(function()

	{

		$("#g").stop().animate({left: 0}, "normal");

	});;
	$("#g").mouseleave(function()

	{

		$("#g").stop().animate({left: -185}, "normal");

	});;


	$("#box_inquiry").mouseenter(function()

	{

		$(this).stop().animate({left: 0}, "normal");

	}).mouseleave(function()

	{

		$(this).stop().animate({left: -315}, "normal");

	});;




	

});

	
