$(document).ready(function(){
	$("#char-text .inactive").attr("id",function(c){
		return "text-"+c;										 
	});
	
	$("#text-0").attr("class","active");
						   
	$(".thumb").attr("id", function(t){
		return "thumb"+t;					
	}).each(function(e){
		$(this).hover(
			function(){
				t_src = $("#thumb"+e).attr("src");
				t_alt = $("#thumb"+e).attr("alt");
				
				$("#bigpic").attr({
					src: t_src.replace("sm","lg"),
					alt: t_alt
				});
				$("#doorpic").attr({
					src: t_src.replace("sm","door"),
					alt: t_alt
				});
				
				$(".active").hide();
				$("#text-"+e).removeClass("active");
				$("#text-"+e).show();
				$("#text-"+e).addClass("active");
			}
		);
	});
	
});
