// JavaScript Document

//clears fields
function clearF(fld){
	document.getElementById(fld).value = "";
}


		
// custom tool tip	
$(function() {
$('#set1 *').tooltip();


$('#header a, #footer li a, #leftcol a, #rightcol a').tooltip({

	track: true,

	delay: 0,

	showURL: false,

	showBody: " - ",
	fade: 100

});

});


