var $j = jQuery.noConflict();

// Help poor IE with the menu
$j(function () {
	$j('li.menulink').hover(
		function() { $j('ul', this).css('display', 'block'); },
		function() { $j('ul', this).css('display', 'none'); }	
	);
	$j('li.menulink ul li').hover(
		function() { $j('a', this).css('background', '#332d47'); },
		function() { $j('a', this).css('background', '#999'); }
	);
});
