function Foo()
{
   document.write('<object type="application/x-shockwave-flash" data="/wp-content/themes/nurseresponse/files/flashMain.swf" width="750" height="175">\n');
   document.write('	<param name="movie" value="/wp-content/themes/nurseresponse/files/flashMain.swf" />\n');
   document.write('	<img src="/wp-content/themes/nurseresponse/images/service_hospitals.jpg" width="750" height="175" alt="" />\n');
   document.write('</object>\n');
}
/*
function arrayToggle(inputArray) {
	for (i = 0; i < inputArray.length; i++) {
		inputArray[i].toggle();
	}
}

Event.addBehavior({
	'.more:click' : function(e) {
		var childrenMore = this.parentNode.getElementsByClassName('more');
		var childrenExtra = this.parentNode.parentNode.getElementsByClassName('extra');
		var children = childrenMore.concat(childrenExtra);
		arrayToggle(children);
	},
	'.extra .less:click' : function(e) {
		var childrenMore = this.parentNode.parentNode.getElementsByClassName('more');
		var childrenExtra = this.parentNode.parentNode.getElementsByClassName('extra');
		var children = childrenMore.concat(childrenExtra);
		arrayToggle(children);
   
	},
	
	'body' :function(e) {
		var extra = this.getElementsByClassName('extra');
		arrayToggle(extra);
	}
});
*/