$(document).ready(function()
{
	$('.big').children('a').children('img').load(function(e)
	{
		$('.big').children('a').children('img').animate({opacity:1}, 500);
	});

	$('.show_image').click(
		function()
		{
			var img = $(this).children('#img').val();
			$('.big').children('a').children('img').animate({opacity:0.3}, 500);
			$('.big').children('a').children('img').attr('src', '/content/images/gallery/pics/big/'+img);
			$('.big').children('a').attr('href', '/content/images/gallery/pics/big/'+img);
		}
	);

	var bgFade = $('#bgFade');

	function fadeInOutLoop(elements, period, fadeTime)
	{
		function fadeInOut()
		{
			elements.stop(true, true);
			elements.animate({ opacity: ((fadeInOut.fadeOut) ? 0 : 1) }, fadeTime);
			fadeInOut.fadeOut = !fadeInOut.fadeOut;
		}

		fadeInOut.fadeOut = true;
		fadeInOut();
		return setInterval(fadeInOut, period, fadeTime);
	}

	bgFade.show();
	fadeInOutLoop(bgFade, 10000, 1500);

	//short/long content
	$('#setLong').click(function()
	{
		$('#setLong').hide();
		$('#setShort').show();
		$('#content').height('2000px');
	});

	$('#setShort').click(function()
	{
		$('#setShort').hide();
		$('#setLong').show();
	});
});
