if ($ == jQuery ) { $.noConflict(); }

jQuery(document).ready(function() {
	
	jQuery('.home-region-button').hover( function( ) {
		var tooltipId = jQuery(this).attr('id').replace('button', 'tooltip');	
		jQuery('#' + tooltipId).stop(true, true).fadeIn(200);
	}, function() {
		var tooltipId = jQuery(this).attr('id').replace('button', 'tooltip');	
		jQuery('#' + tooltipId).stop(true, true).fadeOut(200);
	});
	
});
