$(function() {

	$(".currentThumbs").click(function () 
	{
		$(".currentThumbs").removeClass("activeCurrentProduct");
		$("#currentImage").html('<img src="tiedostot/modules/products/i_'+$(this).attr("href")+'" border=0 />');
		$(this).addClass("activeCurrentProduct");
	});

});

