// 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() {
    $('.col-droite').innerfade({
        speed: 1000,
        timeout: 5000,
        type: 'random',
        containerheight: '310px'
    });

});


$(function() {
    $('#col-gauche_acc').innerfade({
        speed: 1000,
        timeout: 5000,
        type: 'random',
        containerheight: '455px'
    });

});

function popup(pName,url,w,h)
{
	var op = window.open(url, pName,"location=1,status=1,scrollbars=1,width="+w+",height="+h);
        op.moveTo(200,200);
}