
// FUNCIÓN GO TO
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

// FUNCIÓN DESPLEGABLE CONTADAS
$(document).ready(function(){	
      $('.contadas').toggle(function() {
        $("div",this).slideDown("slow");
      }, function() {
        $("div",this).slideUp("slow");
      });
	   $('div.boton2 a',this).click(function(){
		window.location=this.href;
	});
});
// BOTONES MENU
$(document).ready(function(){	
      $('li.boton').toggle(function() {
        $("div",this).slideDown("slow");
	
      }, function() {
        $("div",this).slideUp("slow");
	
      });
 	$('li.boton2 a',this).click(function(){
		window.location=this.href;
	});
});

//LIGHTBOX LIBRERIAS


$(function() {
        $('.galeriaFotos a').lightBox();
		$('.linkFoto a').lightBox();
    });






