

	// homepage flash embedding
		$(document).ready(function(){
		// some variables for editing


			var swfReq      = 9;                               // <----- Minimum Flash Plugin Requirement.
			var swfDoc      = './home.html';                   // <----- HTML document where the flash site is hosted.
			var swfMov      = 'main.swf'                       // <----- Path to the swf movie.
			var homeSwfDiv  = $('#smarterPlannetHomeFlash');   // <----- JQUERY: element that will house the flash.


		// if flash is enabled, immediately deeplink into the swf content.
			var keyword = window.deeplink || '';
			var swfRev    = swfobject.getFlashPlayerVersion();
			if (swfRev.major >= swfReq && !homeSwfDiv.length) {
//				location.replace(swfDoc+'#'+keyword);
			}
		// if we are on thehomepage, show the flash if we have flash
			if(homeSwfDiv.length && swfobject.getFlashPlayerVersion().major >= 9) {
				swfobject.embedSWF(swfMov, homeSwfDiv.attr('id'), '930', '546', '9');
			}
		});


