$(document).ready(function(){
	
	// dropdown ie6 fix
	
		$('ul.popout li').hover(
			function() {
				$(this).children('ul').css('display', 'block');
			},
			function() {
				$(this).children('ul').css('display', 'none');
			});
	
});