<!--
	$(document).ready(function() {
		$(".rollover").hover(function(){
			if($(this).attr("src").indexOf("-over") == -1) {
				var newSrc = $(this).attr("src").replace(".gif","-over.gif");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("-over.gif") != -1) {
				var oldSrc = $(this).attr("src").replace("-over.gif",".gif");
				$(this).attr("src",oldSrc);
				}
			}
		)
		$('.tipthis').attr("title","Click for Information");
		$('.tipthis').each(function () {
			$('#'+this.id).attr("rel", "style/comms.php").cluetip({ 	
				width:250,											  
				dropShadow: false,
				cluetipClass: 'csr',
				positionBy: 'fixed',
				leftOffset:-274,
				topOffSet:-80,
				sticky:true,
				closePosition: 'top',
				closeText: '<img src="images/clue-tip/close.gif" alt="close" title="close"/>',
				activation: 'click',
				ajaxSettings : {
				  type : "POST",
				  data : "tv=" + this.id
				},
				ajaxProcess : function (data) {
					return data;
				}
			});
			});
			$('<div id=\'my-top\'></div>').insertBefore('#cluetip-title');
			$('<div id=\'my-bottom\'></div>').insertAfter('#cluetip-inner');
	});
-->
