<!--
$(function(){
		var tip_img = new Image();
		tip_img.src = '/images/bubble.png';		

		$('img.icon_qm').mouseover(function(e){
				var d   = $(e.target).offset({margin:true, border:true});
				d.left += $(e.target).outerWidth() + 8;
				
				try {
					var tip_note = $(this).attr('alt'),
					notes = tip_note.split('::');
					
					var title =  notes[0], 
					text = notes[1];
				}catch(e) {
					
					var title = '';	
					var text = '';
				}
					
				$('#tool-tip')
					.find('.tool-title').append($('<span>' +  title + '</span>')).end()
					.find('.tool-text').append($('<span>' + text + '</span>')).end()					
			   .css( {top: d.top + 'px', left: d.left + 'px'} ).show();
			   e.preventDefault();
		}).mouseout(function(e){
				$('#tool-tip').find('.tool-title span').remove().end().find('.tool-text span').remove().end().hide();
		});
		
		
		
		//Organisation name show / hide
		//-----------------------------
		$('#awo_yes').click(function(){
			$('#awodiv').show();
		});
		
		$('#awo_no').click(function(){
			$('#awodiv').hide();
		});
		
		
		//Disable / Enable phone number
		//-----------------------------
		$('#phone-disp-this').click(function(){
			$(':input[name=cont_phone_no_alt]').attr('disabled', 'disabled');
		});		

		$('#phone-disp-dif').click(function(){
			$(':input[name=cont_phone_no_alt]').removeAttr('disabled');
		});
});		
-->