// 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);
	
	
	//$('.articulo').imagefit();
	
	
	//CABEZOTE
	$('.paArticulos .imgs').css('visibility', 'visible');
	$('.paArticulos .imgs').fadeTo('slow', 1);
	
	//slideshow articulos
	$('.paArticulos .imgs').cycle({
		fx:    'scrollRight', 
		speed:  700,
		timeout:  5000,
		easing: 'easeOutQuint'
		
	});
	
	//efecto rollOver cabezote
	$('.paArticulos .imgs').hover(
		function() {
			caller = $(this);
			timerRollIn(onRollInCab);
		},
		function() {
			timerRollOut(onRollOutCab);
		}
	);
	
	function onRollInCab(){
		caller.animate({backgroundColor: '#343632'}, 700, 'easeOutQuint');
		$('.paArticulos .infoArt').animate({backgroundColor: '#343632'}, 700, 'easeOutQuint');
	}
	
	function onRollOutCab(){
		caller.animate({backgroundColor: '#2B2C29'}, 400, 'easeOutQuint');
		$('.paArticulos .infoArt').animate({backgroundColor: '#2B2C29'}, 400, 'easeOutQuint');
	}
	
	
	//THUMBS
	$('.articulo img, .edicion img').fadeTo('slow', 0.3);
	
	//efecto thumbs
	$('.articulo img, .edicion img').hover(
		function() {
			caller = $(this);
			timerRollIn(onRollInThumbs);
		},
		function() {
			timerRollOut(onRollOutThumbs);
		}
	);
	
	
	


})