$(function(){
	function change(){
		$(".showroom li:eq(0)").hide(700,function(){$(this).appendTo(".showroom ul:eq(0)").show()});
	}
	var status = setInterval(change,3000);
	$(".showroom ul:eq(0)").hover(function(){
		clearInterval(status);
	},function(){
		status = setInterval(change,3000);
	})
})
