function g_showImage(link)
{	
	$("#g_image").load(
		function ()
		{
			$("#g_image").fadeIn("fast");
		}
	);
	
	$("#g_image").fadeOut("fast", 
		function ()
		{
			$("#g_image").attr("src", link);
		}
	);
}

function goRight()
{
	var currentScroll = $(".g_slider").scrollLeft();
	var width = $(".g_slider").width() - 100;
	var maxScroll = $(".g_slider").attr("scrollWidth");
	
	if ( currentScroll + width > maxScroll )
	{
		$(".g_slider").animate( { scrollLeft: maxScroll }, 1000, "easeOutSine" );
	}
	else
	{
		$(".g_slider").animate( { scrollLeft: currentScroll + width }, 1000, "easeOutSine" );
	}
}

function goLeft()
{
	var currentScroll = $(".g_slider").scrollLeft();
	var width = $(".g_slider").width() - 100;
	
	if ( currentScroll - width < 0 )
	{
		$(".g_slider").animate( { scrollLeft: 0 }, 1000, "easeOutSine" );
	}
	else
	{
		$(".g_slider").animate( { scrollLeft: currentScroll - width }, 1000, "easeOutSine" );
	}
}