/**
 * @author Zell
 */
function Zell(){
	this.init=function(){
		$("#zell_p1").hover(function(){
			$("#zell_p1_sp").css({"right":"10px"}).slideDown("slow");
		},function(){
			$("#zell_p1_sp").css({"right":"10000px"}).slideUp("slow");
		});
		$("#zell_p2").hover(function(){
			$("#zell_p2_sp").css({"right":"10px"}).slideDown("slow");
		},function(){
			$("#zell_p2_sp").css({"right":"10000px"}).slideUp("slow");
		});
		$("#zell_p3").hover(function(){
			$("#zell_p3_sp").css({"right":"10px"}).slideDown("slow");
		},function(){
			$("#zell_p3_sp").css({"right":"10000px"}).slideUp("slow");
		});
		$("#zell_p4").hover(function(){
			$("#zell_p4_sp").css({"right":"10px"}).slideDown("slow");
		},function(){
			$("#zell_p4_sp").css({"right":"10000px"}).slideUp("slow");
		});
	}
}

