
$(function(){
	
	$("div.view p.ph").hide();
	$("a.room").click(function(){
		if($("img#room").attr("src") != $(this).attr("href")){
			$("img#room:not(:animated)").hide();
			$("img#room:not(:animated)").fadeIn("slow").attr("src",$(this).attr("href"));
			$("img#room_con:not(:animated)").attr("src",$(this).attr("href").replace(/^(.+).jpg$/,"$1_con.gif"));
			$("a.room").removeClass("checkedbtn");
			$(this).addClass("checkdbtn");
		}
		return false;
	}).each(function(){
		$("<img>").attr("src",$(this).attr("href"));
	});
});

