$(document).ready(function(){
            //Full Caption Sliding (Hidden to Visible)
			
            $('.destacadosseccion').hover(function(){
                $('.destacadosTxt', this).stop().animate({bottom:'15px'},{queue:false,duration:160});
            }, function() {
                $('.destacadosTxt', this).stop().animate({bottom:'-500px'},{queue:false,duration:160});
            });
        });
		
		function HideEmptyAdLayer( objectId ) {
			var objLayer = document.getElementById( objectId );
			if( objLayer ) {
				if( objLayer.innerHTML.length < 500 )
					objLayer.style.display = "none";
			}
		}
        function showCaption(){
			$(".myDescription").animate({bottom:'0px'},{queue:false,duration:160});
		} 
		function hideCaption() {
			$(".myDescription").animate({bottom:'-480px'},{queue:false,duration:160});
		}
        $(function() {
			$('#mySlideshow').cycle({ 
				fx:     'fade',
				speed:   500, 
				timeout: 6000, // 4000
				cleartype:     !$.myDescription,
				next:   '#nextNav', 
				prev:   '#prevNav' ,
				pager:  '#slideNav',
				before:  onBefore, 
				after:   onAfter
			});
		});
		function onAfter() { 
			showCaption();
		}
		function onBefore() { 
			hideCaption();
		}
