/*
	File Name:		thumbs.js
	Description:	Simple Thumbnail Gallery
	Version:		1
	Author:		Dmitry Korsunov
	E-mail:		dmitry.korsunov@gmail.com
	
	No Rights Reserved.
	But some credit would be appreciated.
*/

var lastThmb = 1;

function thumbs(id) {
	
	if (lastThmb == id) return;
	
	$('#pic' + lastThmb).hide();	
	$('#thmb' + lastThmb).attr("class", "pic");
			
	$('#pic' + id).show();
	$('#thmb' + id).attr("class", "pic act");
	
	lastThmb = id;
		
}
