$(document).ready(function(){
	$("#nav-one li").hover(
		function(){ $("ul", this).fadeIn("slow"); }, 
		function() { } 
	);
	if (document.all) {
		$("#nav-one li").hoverClass ("sfHover");
	}
	});
	  
	$.fn.hoverClass = function(c) {
		return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
	
	$('#flash-home').flash(
        { src: '/sites/motocinch.com/themes/motocinch/flash/moto_cinch02.swf',
          width: 1016,
          height: 420 },
        { expressInstall: true },
        { wmode: transparent },
        { version: 9 }
    );
};
