jQuery(
  
  function ($) {
      
    var heath = new com.heath.Index();

	heath.init();
  
  } // construct
  
);

var com = 
{
  
	heath: {
		
		Index: function() {
			
			this.init = initialize;

			function initialize() {
				
				loadFlash();
			}
			
			function loadFlash() {
				
				var flashvars = {
					mainXMLFilePath: "assets/xml/heath.xml",
					innerDisplayWidth: "960",
					topNavBarHeight: "60",
					contentAreaHeight: "540",
					bottomNavBarHeight: "90",
					displayMarginX: "25",
					displayMarginY: "10",
					pictureGalleryZommOutHeight: "80",
					pictureGalleryZommInHeight: "480",
					primaryColor: "#4d4d4d",
					secondaryColor: "#2a92ce",
					galleryBackgroundSpriteColor: "#efefef",
					pictureGalleryMargin: "0"
				};

				var params = {
					scale: "noscale"
				};

				var attributes = {
					id: "heath",
					name: "heath"
				};

				swfobject.embedSWF("heath.swf", "flash_content", "100%", "100%", "9.0.0","expressInstall.swf", flashvars, params, attributes);
			}

		} // Index

	} // heath

} // com
