// JavaScript Document
/*
jQuery(document).ready(function(){
	jQuery('div.help').hover(
		function() {
			jQuery("div.blockTooltip1", this).delay(250).fadeIn('medium');			
		},
		function() {
			jQuery("div.blockTooltip1", this).fadeOut('fast');
		});	
	});



*/
