// -*- java -*-
$(document).ready(function() {
	 // options for all cluetips
	 var cluetipOptions = {
			local: true,
				attribute: "href",
				showTitle: true,
				titleAttribute: "rel",
				sticky: true,
				width: 200,
				dropShadow: false,
				cluetipClass: "ct",
				closePosition: "title",
				cursor: "pointer"
	 };
	 $("a.popup_small").cluetip(cluetipOptions);
	 
	 // redefine width for other sizes of popup
					
	 cluetipOptions.width = 400;
	 $("a.popup_medium").cluetip(cluetipOptions);
	 
	 cluetipOptions.width = 600;
	 $("a.popup_large").cluetip(cluetipOptions);
});

