// Setup background
var bgImages = new Array(
	"http://www.nhl.com/capitals/v2/ext/images/backgroundLaich.jpg",
	"http://www.nhl.com/capitals/v2/ext/images/backgroundOvechkin.jpg",
	"http://www.nhl.com/capitals/v2/ext/images/backgroundBackstrom.jpg",
	"http://www.nhl.com/capitals/v2/ext/images/backgroundGreen.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundErskine.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundFleischmann.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundGordon.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundJurcina.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundPothier.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundPoti.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundSchultz.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundSteckel.jpg",
	"http://capitals.nhl.com/v2/ext/images/backgroundTheodore.jpg",
	"http://www.nhl.com/capitals/v2/ext/images/backgroundSemin.jpg"
);

// Apply background
jQuery('body').css('background-image', 'url(' + bgImages[Math.round(Math.random()* (bgImages.length - 1))] + ')');