/**
 * @author Abdellah
 */
function abQuickZoom() {
	var h = 93;
	if($type($("boxInner").getElement("ul")) == "element"){
		h = $("boxInner").getElement("ul").getSize().y;
	}
	if(h > 93){
		$("boxOuter").addEvents({
			"mouseenter": function(){
				$("boxInner").tween("height", (h + 43) + "px");
				$$("#boxInner dd").tween("height", h + "px");
			},
			"mouseleave": function(){
				$("boxInner").tween("height", "93px");
				$$("#boxInner dd").tween("height", "50px");
			}
		})
	}

	var h2 = 135;
	var h3 = $("rightSide").getSize().y;
	if($type($("bottom")) == "element"){
		h2 = $("bottom").getSize().y;
	}
	if(h2 > 135){
		$("rightSide").addEvents({
			"mouseenter": function(){
				$("rightSide").tween("height", (h2 + 215) + "px");
			},
			"mouseleave": function(){
				$("rightSide").tween("height", h3 + "px");
			}
		})
	}
}
