//this script relies on mootools!

//1st get the items that are marked as offsite
//<img src="http://livingat.wsu.edu/assets/silk_icons/icon_offsite.png" alt="offsite link" />
function setOffsite(cssClass) {
	var os_links = $$('.'+cssClass);
	os_links.each(function(link){
		link.innerHTML+='<img src="http://livingat.wsu.edu/assets/silk_icons/icon_offsite.png" tooltip="This link will take you to a location that is not on this site" alt="offsite link" />';
	});

}