$(document).ready(function() {
	
				// scroll especial
				$(function (){$('.cont.scrollbar').jScrollPane();});
				
				// slide home principal
				$('#slide01').cycle({ 
                    fx:     'fade', 
                    prev:   '#prev1', 
                    next:   '#next1', 
                    timeout: 0 
                });
				
				
				// slide home bottom
				$('#slide_E').cycle({ 
                    fx:     'fade', 
                    timeout: 50 
                });
				
				
				// columnitas de programas
				$('.col:nth-child(3n)').addClass('last');
				
				/* Plugin to make variable height divs equal heights */
				$.fn.sameHeights = function() {
				$(this).each(function(){
				var tallest = 0;			
				$(this).children().each(function(i){
				if (tallest < $(this).height()) { tallest = $(this).height(); }
				});
				$(this).children().css({'height': tallest});
				});
				return this;
				};
				/* Make boxes same height */
				$('.listado').sameHeights();

});
	
				


				
