
// sets up unobtrusive print icon that appears on each page
$(document).ready(function() {
	if($('#crumb')){					   
		var mylink = '<a href="" id="print" title="Print this page">&nbsp;</a>';
		$('#crumb').append(mylink);
		$('#print').click(function(){window.print(); return false});
	}
	if($('a')) {
		$('a').each(function(i){
			if($(this).attr("rel")=="external"){
				$(this).attr("target", "_blank");
			}
		});
	}
});
						   
// autcomplete call
/*
jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery("#thesearch").autocomplete("/scripts/autosuggest/autosuggest.cfm", {
	max: 9,
	scrollheight: 170
	});

});
*/