// This next section sets up the fading images for the Sponsors section on the sidebar. 
// SPEED: In milliseconds - how long the transition should take.
// TYPE: Type of slideshow: 'sequence', 'random' or 'random_start'
// CONTAINERHEIGHT: The height of the div that is calling the innerfade method.


$(function() {
	
	
	$('div#unopubli').innerfade({
        speed: 2000,
        timeout: 3000,
        type: 'sequence',
        containerheight: '92px'
    });
	$('div#dospubli').innerfade({
        speed: 2000,
        timeout: 3000,
        type: 'sequence',
        containerheight: '92px'
    });
	$('div#trespubli').innerfade({
        speed: 2000,
        timeout: 3000,
        type: 'sequence',
        containerheight: '92px'
    });
	$('div#cuapubli').innerfade({
        speed: 2000,
        timeout: 3000,
        type: 'sequence',
        containerheight: '92px'
    });
	
});


