$(document).ready(function() {

/*actions for info page*/

//menu actions

$('a img').hover(
 			
 			function()
 			{ this.src = this.src.replace("_off","_on"); },
			
			function() 
			{ this.src = this.src.replace("_on","_off"); }

		);

//hiding covers and changing overflow

$('#published').css({overflow: 'hidden'});

/*$('.cover').css({overflow: 'hidden', height: '0px'});

$('.book').hover(

	function () {
	
	$(this).find('.cover').animate({height: '190px'}, 500);
	
	
	},
	
	
	function () {
	
	$(this).find('.cover').animate({height: '0px'}, 500);
	
	}

);*/

/* decorando el scroll */
	
	$('#published-cont').jScrollPane({
	
		showArrows : true,
	
	});
	
	$('a.legal').click(function(){

$('.popup').load('legal.php', function(){$('.popup').css('visibility','visible')});

return false;

});

$('.popup').click(function(){ $(this).css('visibility','hidden')});

});