$(function(){   
	$('ul#dept_links a').leaveNotice({
		exitMessage: "<p class='em'><strong>You have requested to visit a website outside of<br/>{SITENAME}</strong></p>",
		siteName:"Governor Culver &amp; Lt. Governor Judge's Website",
		timeOut: 6000
	});
	$('ul#nav_list li').hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});
	$('div#main_content a').each(function(){
		if ($(this).attr('href')) {
			href=$(this).attr('href');
			// PDF Links
			if (href.indexOf(".pdf")>0) {$(this).addClass('pdf_link');}
			// MS Word Links
			if (href.indexOf(".doc")>0) {$(this).addClass('word_link');}
			// External Links
			if (href.indexOf("http://")>=0) {
				if (href.indexOf("http://www.governor.iowa.gov/")<0) {
					$(this).leaveNotice({
						exitMessage: "<p class='em'><strong>You have requested to visit a website outside of<br/>{SITENAME}</strong></p>",
						siteName:"Governor Culver &amp; Lt. Governor Judge's Website",
						timeOut: 6000
					});
				}
			}
		}
	});
});