/* <![CDATA[ */
//Code to change the header image in the class 'special' div
var totalNum = 5;  //total number of images in the /wdce/images/headerBg/ folder numbered wdce0-#
var rndNum = Math.floor(Math.random() * totalNum);

$(function(){																					 
	$(".special").css({'background-image' : 'url(/wdce/images/headerBg/wdce' + rndNum + '.jpg)'});
});	
/* ]]> */
