$(document).ready(function(){

	// Main navigation
	$("ul.sf-menu").superfish(); 

    $('ul.sf-menu').superfish({ 
        delay:       500,                            // one second delay on mouseout 
        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed:       'fast',                          // faster animation speed 
        autoArrows:  false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    }); 

	// Accessible forms JS
	if($.browser.mozilla){
		$("form.cmxform").find("li > label").not(".nocmx").each(
			function(i)
			{	
				span = document.createElement("span");
				$(span).css({ display: "block", width: $(this).css("width") });
				$(this).css("display","-moz-inline-box");
				$(span).html($(this).html());
				$(this).html("");
				$(this).append(span);
			}
	);}
}); // Close main function