$(document).ready(function() {                
	if(jQuery.browser.mozilla) {
		$('form.cmxform').hide().find('label:not(.nocmx)').each(function(){
			var $labelContent = $(this).html();
			var $labelWidth = $(this).css('width');
			$(this).empty();
			$(this).append('<span style="display: block; width: '+$labelWidth+';">');
			$(this).prepend('</span>');
			$(this).css('display', '-moz-inline-box');
			$(this).find('span').html($labelContent);
			$('form.cmxform').show();
		});
	};             
});

$(document).ready(function() {
  $('ul#nav li').hover(function() {
      $('ul:first', this).show();
    },
  function() {
    $('ul:first', this).hide();
  });

});

