/*
 Default jQuery functions for Community Relations
*/

$("document").ready(function(){
	$("#content li a[href$=.pdf]").parent().append("<img 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]").click(function(event){
		var currentLink = $(this).attr("href");
		var newLink = "http://www.fortworthgov.org/linkto.aspx?target=" + currentLink;
		window.location = newLink;
		return false;
	});
});
