this.nav = function(){
	$("#nav li").hover(
	  function () {
		$("ul",this).show();
	  },
	  function () {
		$("ul",this).hide();
	  }
	);

};
this.swf = function(){
	var flashvars = {};
	var attributes = {};
	var params = {
	 	wmode: "transparent"
	};
	var intro = document.getElementById("flash");
	if(intro){
		container = document.createElement("span");
		container.id = "homeFlash";
		intro.appendChild(container);
		swfobject.embedSWF("swf/home.swf", "homeFlash", "700", "286", "8.0.0", "", flashvars, params, attributes);
	};
	var realityVideo = document.getElementById("realityVideo");
	if(realityVideo){
		container = document.createElement("p");
		container.id = "realityVideoFlash";
		realityVideo.appendChild(container);
		swfobject.embedSWF("swf/reality-lasik.swf", "realityVideoFlash", "535", "270", "8.0.0", "", flashvars, params, attributes);
	};
};


$(document).ready(function(){
	swf();
	nav();
});