/*
 Default jQuery functions for Planning and Development
*/

$("document").ready(function(){
	$("#content li a[href$=.pdf]").parent().append("<img class=\'pdfIcon\'src=\'\/uploadedImages\/acrobat_sml.gif\' alt=\'PDF Icon\' title=\'This link will open a PDF\' \/>");
	$("#content p a[href$=.pdf]").append("<img src=\'\/uploadedImages\/acrobat_sml.gif\' alt=\'PDF Icon\' title=\'This link will open a PDF\' border=\'0\' \/>");
	$("a[href^=http]").not("a[href*=fortworthgov]").click(function(event){
		var currentLink = $(this).attr("href");
		var newLink = "http://www.fortworthgov.org/linkto.aspx?target=" + currentLink;
		window.location = newLink;
		return false;
	});
	$("a[href$=.pdf]").attr("target","_blank");
});
