$(document).ready(
	function()
	{
		// Makes the nav work in IE6
		$('#mainnav li').hover(
			function () {$(this).addClass("over");},
			function () {$(this).removeClass("over");}
		);

		$("a[rel='popup'],area[rel='popup'],a[target='_popup'],").click(function () {
			var features = "height=550,width=510,scrollTo,resizable=1,scrollbars=1,location=1";
			newwindow=window.open(this.href, 'Popup', features);
			return false;
 		});


		$("#popupcontainer a[rel='closepopup']").click(function () {
			window.close();
			return false;
		});
		
		$('a.lightbox,area.lightbox').lightBox();
		
	}
);