$(document).ready(function() {
  
  $('.hide').hide();
													 
	$('ul.navigation li:has(ul)').hover(
		function() { $(this).addClass('hover'); },
		function() { $(this).removeClass('hover'); }
	);
	
	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();
		});
	};
	
	$(".slidecontent h2 a").click(function(){
		$(this).parents("h2:first").siblings("div").slideDown();
		return false;
	})
	
});
