/**
 * 
 * Script en el que se inicializa la galería de la portada.
 * 
*/


(function($) {
    $(function() {
	$('#rowLeft, #rowRight').hide();
	$('.galery_items').hover(
	    function(){
		$('#rowLeft, #rowRight').show();
	    },
	    function(){
		$('#rowLeft, #rowRight').hide();
	    }
	);
      
      
      
      
	$('#galery_items').cycle({
	    fx:     'scrollHorz',
	    timeout:'8500',
	    next:   '#rowRight',
	    prev:   '#rowLeft'
	});
    })
})(jQuery)
