		$(document).ready(function() {
			$curtainopen = false;
			$(".rope").click(function(){
				$(this).blur();
				if ($curtainopen == false){ 
					$(this).stop().animate({top: '0px' }, {queue:false, duration:350, easing:'easeOutBounce'}); 
					$(".leftcurtain").stop().animate({width:'60px'}, 2000 );
					$(".rightcurtain").stop().animate({width:'60px'},2000 );
					$curtainopen = true;
					j=0;
					runSlideShow();
					setContenido(0);
				}else{
					$(this).stop().animate({top: '-40px' }, {queue:false, duration:350, easing:'easeOutBounce'}); 
					$(".leftcurtain").stop().animate({width:'50%'}, 2000 );
					$(".rightcurtain").stop().animate({width:'50%'}, 2000 );
					$curtainopen = false;
					setContenido(0);
					
				}
					document.getElementById('VU').style.display='';
				return false;
				
			});
			
		});	

