$(document).ready(function() {

	// Dropdown navigation: Set a class of 'over' so the ie6 css will work
	$('#header .navigation > li').hover(
		function() {
			$(this).addClass('over');
		},
		function() {
			$(this).removeClass('over');
		}
	);
	
	// Set popup windows in the footer
	$('#footer .popup').click(function() {
		var pageURL = $(this).attr('href');
		window.open(pageURL,'legal','width=290,height=350,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no');
		return false;
	});

});
