<!--
window.onload=function(){
	$('#vertical img, #horizontal img').css('visibility','visible');
	$('#loaded').show();
	$('#loading').hide();	
}
$(function(){
	$("#vertical div a").hover(function(){
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
	}, function() {
		$("img", this).stop().animate({top:"-160px"},{queue:false,duration:200});
	});
});
//-->
