$(function() {
	$("#navi img").css("opacity","0.3");
	$("#navi img").mouseover(
				function () {
					$(this).stop().animate({opacity: 1}, 'normal');}
					 );
	$("#navi img").mouseout(
				function () {
					$(this).stop().animate({opacity: 0.3}, 'normal');}
	);
	
	$("#navi a").click(function() {
		$("#caption").text($(this).attr("title"));
		$("#screenArea img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		if($("#screenArea img").width() < $("#screenArea").width() ) {
			$("#screenArea img:last").fadeOut("normal",function(){
				$(this).remove();
			});
		}else{			
			$("#screenArea img:last").fadeOut("normal",function(){$(this).remove();});	
		}
	return false;
	});
	

});

