$(function() {
	
	// make the drop down menus work in ie6
	if ($.browser.msie && $.browser.version < 7) {
		$('#navigation ul.top-level li').hover(
			function() {
				$('ul', this).css('left', '0');
				$('ul', this).css('bottom', '33px');
			},
			function() {
				$('ul', this).css('left', '-999em');
			}
			
		);

	}
	
});