(function( $ ) {

var module = {};

module.Init = function () {
    var backgrounds = [
        '/images/marketing/2011-holiday-content/spidercrossings.jpg',
        '/images/marketing/2011-holiday-content/electrichead.jpg',
    ];
    var bg = backgrounds[Math.round( Math.random() * (backgrounds.length-1) )];
    $('#v-20120103-premium-content').css( 'backgroundImage', 'url(' + quakelive.resource( bg ) + ')' );
};

quakelive.RegisterModule( 'valance', module );

})( jQuery );


