/*
===============================================================
Unobtrusive Rollovers Javascript
===============================================================
AUTHOR			: Christian Wach <needle@haystack.co.uk>
LAST MODIFIED	: 11/11/2007
DEPENDENCIES	: jquery.js
				  cluetip jQuery plugin
---------------------------------------------------------------
NOTES

We may wish to amend all of this...

---------------------------------------------------------------
*/



// load when ready...
$(document).ready(function() {



// init span type tooltip
$('span[@title]').css({borderBottom: '1px solid #666666'}).cluetip({

	splitTitle: '|', 
	arrows: true, 
	dropShadow: false, 
	cluetipClass: 'jtip'
	
});



// end ready
});
  
