Photos = {}
Photos.index = {}

/****************************************************************************
** Photos.index
****************************************************************************/
Photos.index.load = function () {

	$('div.thumbs li a').click(function () {
		
		var t = $(this);
		var id = t.attr('class').replace('id_', '');
		
		$('div.preview img').attr('src', '/upload/gallery/normal/' + id + '.jpg');
		
		return false;
		
	});
	
	$('div.nav2 a').click(function () {
		
		var t = $(this);
		var id = t.attr('class').replace('pag_', '');
		
		for (i = 0; i < 16; i++) {
			$($('div.thumbs img')[i]).attr('src', '/upload/gallery/thumb/' + (16*(id-1) + i + 1) + '.jpg')
			$($('div.thumbs img')[i]).parent().attr('class', 'id_' + (16*(id-1) + i + 1))
		}
		
		$('div.nav2 a').css('color', '#fff');
		t.css('color', '#000');
		
		return false;
		
	})

}

/****************************************************************************
** Constructor
****************************************************************************/
$(document).ready(function () {

	if (typeof $('div.photos.index')[0] != 'undefined') Photos.index.load();

});
