
//on page load (as soon as its ready) call tooltip_init
$(document).ready(simpletip_init);

function simpletip_init(){
	   $("a.simpletip").hover(function(){simpletip_show(this.rel)},function(){UnTip()});	 
}


function simpletip_show(title){

	Tip(title, ABOVE, true);

}



