
	
//PORTADA iguala las dos columnas con las fotos 
	function igualar(){
		 if($('.c50r div').height()>=$('.c50l div').height()){
			$('.c50l').css({'height': $('.c50r ').height()})
		}
		else{
			$('.c50r').css({'height': $('.c50l').height()})
		 }
	}


//PORTADA sroll de noticias
	function initScroll(){
		$("div.scrollable .items").load("scroll_contenido.asp",function () {
			$("div.scrollable").css('background-image','none');								 
			$("div.scrollable").scrollable({
				size: 1,
				vertical:true,
				interval: 4000,
				loop: true, 
				speed: 500,
				onBeforeSeek: function() {
					this.getItems().fadeTo(100, 0.2);
					//$('.scrollable ').height($('.items div ').height()+10)
				},
				onSeek: function() {
					
					this.getItems().fadeTo(100, 1);
					
					}
				});	

			});	

		};



	
	
	
	
	
	
	
	
	
	
	
	
	