// JavaScript Document
	  $(document).ready(function(){
			$("#nav li").hover(
				function(){ $("ul", this).fadeIn("fast"); }, 
				function() { } 
			);
	  	if (document.all) {
				$("#nav li").hoverClass ("sfHover");
			}
	  });
	  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};	
		
function Home()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="270" width="787">\n');
   document.write('<param name="movie" value="home temp.swf"/>\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="home temp.swf" ... height="270" width="787" wmode="transparent"></embed>\n');
   document.write('<param name="wmode" value="transparent">\n');
   document.write('</object>\n');
}		
function Video()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="325" width="500"">\n');
   document.write('<param name="movie" value="video.swf"/>\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="video.swf" ... height="325" width="500"></embed>\n');
   document.write('</object>\n');
}
function Domestic()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="270" width="787">\n');
   document.write('<param name="movie" value="domestic.swf"/>\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="domestic.swf" ... height="270" width="787" wmode="transparent"></embed>\n');
   document.write('<param name="wmode" value="transparent">\n');
   document.write('</object>\n');
}
