// JavaScript Document
//loadthumb
function loadthumb(imgtarg, src){
	$(imgtarg).hide();
	var img = new Image();
	$(img).load(function(){
		$(imgtarg).attr("src", src);
		$(imgtarg).fadeIn("slow");
	}).attr("src", src);
	return false;
}

function loadinfo(infoid, src){
	$(infoid).hide();
	$(infoid).css("background","url(" + src + ") no-repeat");
	
	$(".photo-tip").animate({
		opacity: "hide",
		top: "610"
	}, "fast");
	$(infoid).stop(true, true).animate({
		opacity: "show",
		top: "610"
	}, "slow");
}

$(document).ready(function(){
	$('.img2').each(function(i){
		$('.sample2-' + (i + 1)).click(function(){
			loadthumb('#bigimg2', 'Assets/images/fotoalbum/02big-' + (i + 1) + '.jpg');
			loadinfo('#info2-' + (i + 1),'Assets/images/fotoalbum/bubble.png'); //loadinfo('#info2-' + (i + 1),'images/bubble-' + (i + 1) + '.png');
		});
	});
});
