$(document).ready(function(){
	
	$("#Boxiv").html('<img id="Foto" src="'+ $(".thumbs li.on img").attr("src") +'" alt="'+ $(".thumbs li.on img").attr("title") +'" /><br /><span>'+ $(".thumbs li.on img").attr("title") +'</span>');

	var thumb = $(".thumbs img");

	thumb.parents('li').not('.on').children('img').fadeTo('fast',0.3);
	
	thumb.hover(function() {
		$(this).fadeTo('fast',1);
	}, function() {
		thumb.parents('li').not('.on').children('img').fadeTo('fast',0.3);
	});
	
	thumb.click(function(){
	
		thumb.parents('li').removeClass('on');
		$(this).parents('li').addClass('on');
	
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		
		$("#Foto").attr({ src: largePath, alt: largeAlt });
		
		$("#Boxiv span").html(largeAlt); return false;
	});
	
});