// JavaScript Document

$(function(){ 
	$(".floorBox a").click(function(){
			return false;
	});
																			
	$(".floorBox a").mouseover(function(){
	$(".imgBox img:not(:animated)").before("<img src='"+$(this) .attr("href")+"' alt=''>");
	$(".imgBox img:odd").fadeOut("slow",function(){
		$(this).remove();
		});
	});
});
