$(document).ready(function(){   
	$("div.showbox").hide();
	$("div.infobox").hide();
	
	$("div.infobox").mouseup(function(){
		$("div.infobox").hide("slow");
		$("div.showbox").show("slow");
		return false;
	});

	$("div.showbox").mouseup(function(){
		$("div.showbox").hide("slow");
		$("div.infobox").show("slow");
		return false;
	});
});
