$(function() {
//http://malsup.com/jquery/cycle/
    var stack = [];     
    for (var i = 3; i < 7; i++) { 
        var img = new Image(958,168); 
        img.src = 'sys_img/cabecera' + i + '.jpg'; 
		img.alt = 'Fibes. Palacio de Congresos y Exposiciones de Sevilla';
        $(img).bind('load', function() { 
            stack.push(this); 
        }); 
    }  
 
    // start slideshow 
    $('#slideshow2').cycle({ 
	fx:'fade', 
        delay: 200,
        speed: 2800	,
        timeout:  2000, 
        before: onBefore 
    }); 
 
    // add images to slideshow 
    function onBefore(curr, next, opts) { 
        if (opts.addSlide) 
            while(stack.length) 
                opts.addSlide(stack.pop());  
    }; 
 });

$(function() { $('.galeriaSimple a').lightBox({fixedNavigation:true});	});

$(function() { $('a[rel=lightbox]').lightBox({fixedNavigation:true}); });