// Setup background
var bgImages = new Array(
	"http://oilers.nhl.com/v2/ext/backgrounds/GagsDeslTELUS.jpg",
	"http://oilers.nhl.com/v2/ext/backgrounds/GilbertStrudTELUS.jpg",
	"http://oilers.nhl.com/v2/ext/backgrounds/GrebSmidTELUS.jpg",
	"http://oilers.nhl.com/v2/ext/backgrounds/HemskyCogsTELUS.jpg",
	"http://oilers.nhl.com/v2/ext/backgrounds/SullyVisoTELUS.jpg",
	"http://oilers.nhl.com/v2/ext/backgrounds/KhabbyStortini.jpg"
);

// Apply background
jQuery('body').css('background-image', 'url(' + bgImages[Math.round(Math.random()* (bgImages.length - 1))] + ')');
