function popup(pg) {
	window.open(pg,'pop','width=500,height=300,scrollbars=yes,toolbar=no,addressbar=no,resizable=yes');
}
$(document).ready(function(){
	$('#top-nav li').hover(
		function() { $('ul', this).css('left', 'auto'); },
		function() { $('ul', this).css('left', '-999em'); }
	);
});
