$(document).ready(function(){
	
	$('.theme_switcher a').click(function(e){
		e.preventDefault();
		$('body').removeClass().addClass($(this).attr('rel'));
		$.ajax({ url: "/save_theme.php?avz_theme_name="+$(this).attr('rel') });
		return false;
	});
	
	
	$('a[rel^=lightbox]').lightBox({
		imageLoading:			'/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev:			'/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext:			'/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		imageBtnClose:			'/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				'/images/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
		txtImage:				'Slika',	// (string) Specify text "Image"
		txtOf:					'od'		// (string) Specify text "of"
	});
});
