//GLOBAL
var FFL = {};

//INIT
jQuery(function() {
	jQuery("#noscript").addClass("js");
	

	//click handler: change sub gallery image
	jQuery("#kb_thumb a").click(function() {
		jQuery("#kb_thumb a").removeClass("act");
		jQuery(this).addClass("act");
		var newPreviewSrc = jQuery(this).attr("href"); //clicked thumb becomes also new preview src
		var thumbnailUrl = jQuery(this).children("img").attr("src"); //clicked thumb img id
		var newBigContentId = jQuery(this).children("img").attr("id"); //clicked thumb img id
		jQuery("#kb_image img").attr("src",newPreviewSrc); //update big img src
		//jQuery("#kb_image a").attr("href",newPreviewSrc); //update big img href

		return false;
	});


	//IE6 png fix
	jQuery.ifixpng('/fileadmin/templates/x.gif'); //CHANGE THIS URI ACCORDINGLY
	jQuery('img[@src$=.png],#h_vetrina').ifixpng();
});

