function embed_flash() {
			/**********************************************
			 *                                            *
			 *     Configure these if you need to         *
			 *											  *
			 **********************************************/	

			var baseURL = "http://www.nwc.gov.au/www/"
 
			/**********************************************
			 *                                            *
			 *    No touchy-touchy, or breaky-breaky      *
			 *                                            *
			 **********************************************/
			 var flashID = 'flash_movie';
			 // define the minimum dimensions for scrolling (If width or height is smaller than these, you get scrollbars)
			var minWidth = "683";
			var minHeight = "971";
			
			// define the maximum width/height for scaling (If either dimension is larger, then centering will occur instead of scaling)
			var maxWidth = "683";
			var maxHeight = "971";
			
			var flashVersion = "10.0.0";
			var flashvars = 
			{
					 contentURL:baseURL + "resources/swf/AnnualReport2009.swf"
			 };
			
			var params = {wmode:"opaque"};
			var attributes = {};
			attributes.id = flashID;
			
			swfobject.embedSWF( baseURL + "resources/swf/Main.swf", "flashContainer",minWidth,minHeight,
								flashVersion,false,
								flashvars, params, attributes
							   );

		}
		$(document).ready(function(){embed_flash();})