var total_gal_cnt 		= 0;
var curr_load	  		= 0;
var galery_link   		= new Array();
var galery_first_photo 	= new Array();
var galery_title 		= new Array();
var galery_link_full 	= new Array();

function thumbNavNext()
{
	curr_load 	= curr_load + 1;

	if (curr_load > total_gal_cnt-1)
	{
		curr_load = 0;
	}

	f1 = curr_load;


	if (f1+1 > total_gal_cnt-1)
	{
		f2 = 0;
	}
	else
	{
		f2 = f1+1;
	}

	if (f2+1 > total_gal_cnt-1)
	{
		f3 = 0;
	}
	else
	{
		f3 = f2+1;
	}

	$('#galleryfoto-related-gallery-3x-photo-1 img').attr('src', '/img/thumb-loader.gif');
	$('#galleryfoto-related-gallery-3x-photo-1 img').addClass('galleryfotoloader');
	$('#galleryfoto-related-gallery-3x-photo-2 img').attr('src', '/img/thumb-loader.gif');
	$('#galleryfoto-related-gallery-3x-photo-2 img').addClass('galleryfotoloader');
	$('#galleryfoto-related-gallery-3x-photo-3 img').attr('src', '/img/thumb-loader.gif');
	$('#galleryfoto-related-gallery-3x-photo-3 img').addClass('galleryfotoloader');


	$('#galleryfoto-related-gallery-3x-photo-1').click( function () {
		pageTracker._trackPageview('/navigacija/galeriju_katalogai');
		window.location=galery_link[f1];
	});
	$('#galleryfoto-related-gallery-3x-photo-1 img').attr('src', galery_first_photo[f1]);
	$('#galleryfoto-related-gallery-3x-photo-1 img').removeClass('galleryfotoloader');
	$('#galleryfoto-gal-title1').html(galery_link_full[f1]);


	$('#galleryfoto-related-gallery-3x-photo-2').click(function () {
		pageTracker._trackPageview('/navigacija/galeriju_katalogai');
		window.location=galery_link[f2];
	});
	$('#galleryfoto-related-gallery-3x-photo-2 img').attr('src', galery_first_photo[f2]);
	$('#galleryfoto-related-gallery-3x-photo-2 img').removeClass('galleryfotoloader');
	$('#galleryfoto-gal-title2').html(galery_link_full[f2]);

	$('#galleryfoto-related-gallery-3x-photo-3').click(function () {
		pageTracker._trackPageview('/navigacija/galeriju_katalogai');
		window.location=galery_link[f3];
	});
	$('#galleryfoto-related-gallery-3x-photo-3 img').attr('src', galery_first_photo[f3]);
	$('#galleryfoto-related-gallery-3x-photo-3 img').removeClass('galleryfotoloader');
	$('#galleryfoto-gal-title3').html(galery_link_full[f3]);

}

function thumbNavPrev()
{
	curr_load 	= curr_load - 1;

	if (curr_load < 0)
	{
		curr_load = total_gal_cnt-1;
	}
	f1 = curr_load;


	if (f1+1 > total_gal_cnt-1)
	{
		f2 = 0;
	}
	else
	{
		f2 = f1+1;
	}

	if (f2+1 > total_gal_cnt-1)
	{
		f3 = 0;
	}
	else
	{
		f3 = f2+1;
	}


	$('#galleryfoto-related-gallery-3x-photo-1 img').attr('src', '/img/thumb-loader.gif');
	$('#galleryfoto-related-gallery-3x-photo-1 img').addClass('galleryfotoloader');
	$('#galleryfoto-related-gallery-3x-photo-2 img').attr('src', '/img/thumb-loader.gif');
	$('#galleryfoto-related-gallery-3x-photo-2 img').addClass('galleryfotoloader');
	$('#galleryfoto-related-gallery-3x-photo-3 img').attr('src', '/img/thumb-loader.gif');
	$('#galleryfoto-related-gallery-3x-photo-3 img').addClass('galleryfotoloader');



	$('#galleryfoto-related-gallery-3x-photo-1').click( function () {
		pageTracker._trackPageview('/navigacija/galeriju_katalogai');
		window.location=galery_link[f1];
	});
	$('#galleryfoto-related-gallery-3x-photo-1 img').attr('src', galery_first_photo[f1]);
	$('#galleryfoto-related-gallery-3x-photo-1 img').removeClass('galleryfotoloader');
	$('#galleryfoto-gal-title1').html(galery_link_full[f1]);


	$('#galleryfoto-related-gallery-3x-photo-2').click(function () {
		pageTracker._trackPageview('/navigacija/galeriju_katalogai');
		window.location=galery_link[f2];
	});
	$('#galleryfoto-related-gallery-3x-photo-2 img').attr('src', galery_first_photo[f2]);
	$('#galleryfoto-related-gallery-3x-photo-2 img').removeClass('galleryfotoloader');
	$('#galleryfoto-gal-title2').html(galery_link_full[f2]);


	$('#galleryfoto-related-gallery-3x-photo-3').click(function () {
		pageTracker._trackPageview('/navigacija/galeriju_katalogai');
		window.location=galery_link[f3];
	});
	$('#galleryfoto-related-gallery-3x-photo-3 img').attr('src', galery_first_photo[f3]);
	$('#galleryfoto-related-gallery-3x-photo-3 img').removeClass('galleryfotoloader');
	$('#galleryfoto-gal-title3').html(galery_link_full[f3]);
}

function changeMarking (el)
{
	$('.galleryfoto-catlg-col p').removeClass('fotocatactive');
	$(el).parent().addClass("fotocatactive");
}
