// External Links

function externalLinks() {   
 if (!document.getElementsByTagName) return;   
 var anchors = document.getElementsByTagName("a");   
 for (var i=0; i<anchors.length; i++) {   
   var anchor = anchors[i];   
   if (anchor.getAttribute("href") &&   
       anchor.getAttribute("rel") == "external")   
     anchor.target = "_blank";   
 }   
}   
window.onload = externalLinks;

// jQuery

$(document).ready(function(){
	
	// Auto-Resizing Div
	
	var libro_detalles_height = $('#libro_detalles').height();
	$('#img_container').css("height",libro_detalles_height+24);
	// window.console.log('height is --> ' + libro_detalles_height);
});

