// Funcionalidades del sitio
// Interiores

function check_length(Object, maxLen){
	if (Object.value.length >= maxLen) {
		Object.value = Object.value.substring(0, maxLen);
	}
}
jQuery(document).ready(function($){
	
	//Zoom de texto
	$(".mas").click(function(){  
   		var currentFontSize = $('#noticiaTexto').css('font-size');
    	var currentFontSizeNum = parseFloat(currentFontSize, 12);
    	var newFontSize = currentFontSizeNum+2;
 		if (newFontSize < 20)
    		$('#noticiaTexto').css('font-size', newFontSize);
    	return false;
  	});
	
    $(".menos").click(function(){ 
    	var currentFontSize = $('#noticiaTexto').css('font-size');
    	var currentFontSizeNum = parseFloat(currentFontSize, 10);
    	var newFontSize = currentFontSizeNum-2;
 		if (newFontSize > 12)
    		$('#noticiaTexto').css('font-size', newFontSize);
 		return false;  
  	});

	//Ventanas emergentes de colorbox
	$(".imprimir").colorbox({width:"700px",height:"550px",maxWidth:700,maxHeight:540,iframe:true});
	$(".enviar").colorbox({width:"700px",height:"330px",iframe:true});
	
	//Galeria semanal
	jQuery("#noticiaSidebarGaleria").css({'display':'block'});
	jQuery("#noticiaSidebarGaleria a[rel='notaGaleriaSemanal']").colorbox({
			current:'',
			scalePhotos:true,
			width:660,
			height:600,
			innerWidth:640,
			innerHeight:580,
			opacity:0.85
			});
	
});
// vim: set fdm=marker fmr={,}: */
