$(function(){
	$(".IE6 #gnav li, .IE6 #lnav li").hover(function(){$(this).addClass('hover');}, function(){$(this).removeClass('hover');});
	$('#gnav li, #lnav li, .links li').css('cursor','pointer').click(function(e){
		e.stopPropagation(); 
		if(this.firstChild.href){
			if($(this.firstChild).attr('rel')=='external')
				window.open(this.firstChild.href)
			else
				window.location=this.firstChild.href;
			return false;
	
		}
	});
	
	$("a[rel=external]").live("click", function(){this.target="_blank"});
	var images = new Array();
	var i = 0;
	$("a[rel=popup]").each(function(){ images[i]= new Image();images[i].src=this.href;i++;}).live("click", function(){
		pic1= new Image();pic1.src=this.href;
		try{popup.close();} catch(e){}
		popup = window.open("","popup","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width="+pic1.width+", height="+pic1.height);
		$(popup.document.body).html("<img src='"+this.href+"' alt=''/>").css("margin",0);
		return false;
	});

});

