// Setup background

var bgImages = new Array(
	"http://1.cdn.nhle.com/ducks/v2/ext/images/hdr/Getzlaf_background.jpg",
"http://1.cdn.nhle.com/ducks/v2/ext/images/hdr/Selanne_background.jpg",
"http://1.cdn.nhle.com/ducks/v2/ext/images/hdr/Hiller_background.jpg",
"http://1.cdn.nhle.com/ducks/v2/ext/images/hdr/Koivu_background.jpg",
"http://2.cdn.nhle.com/ducks/v2/ext/images/hdr/Perry_background.jpg",
	"http://3.cdn.nhle.com/ducks/v2/ext/images/hdr/Ryan_background.jpg",
"http://1.cdn.nhle.com/ducks/v2/ext/images/hdr/Visnovsky_background.jpg"
);

jQuery('body').css('background-image', 'url(' + bgImages[Math.round(Math.random()* (bgImages.length - 1))] + ')');

