var tb_pathToImage = "modules/Album/templates/db/js/loadinganimation.gif";

$(document).ready(function(){
    imgLoader = new Image();
	imgLoader.src = tb_pathToImage;
	$("a.preview").click(function(e){
		this.t = this.title;
		$(".picture").html('');
		$(".picture").html("<p id='preview'><img id='imagine_mare' alt='Imaginea se incarca...' /></p>");
		$("#imagine_mare").hide();
		$('#imagine_mare').attr('src', this.t ).load(function() {
			$.mynamespace = {
				width_img : $("#imagine_mare").width(),
				height_img: $("#imagine_mare").height()
			};
			$("#imagine_mare").width(getMarime( $.mynamespace.width_img , $.mynamespace.height_img )[0]); 
			$("#imagine_mare").height(getMarime( $.mynamespace.width_img , $.mynamespace.height_img )[1]);
			$("#imagine_mare").fadeIn();
		});
    });

	$(function() {
		$(".slideshow").jCarouselLite({
			visible: 6,
			btnNext: ".next",
			btnPrev: ".prev",
			circular: true,
			vertical: true,
			auto: 2000,
    			speed: 1000
		});
	});
});
