$(document).ready(function(){

//	var so = new SWFObject("files/flash/home-flash.swf", "swf-home-flash", "747", "350", "7", "#000000");
//	so.addParam("wmode", "opaque");
//	so.write("home-flash");

$('#home-flash').flash(
    { src: 'files/flash/home-flash.swf' ,
          wmode: 'opaque',
          width: 747,
          height: 350
 }, 
    { expressInstall: true }
);

	//Display the current date
	var Today = new Date();
	var Months = new Array("January","February","March","April","May","June", "July","August","September","October","November","December");
	var strDate = Months[Today.getMonth()] + " "+ Today.getDate() + ", " + Today.getFullYear() + " ";
	$("#todaysDate").text(strDate);
});