jQuery(function($) {
   jQuery('#note').click(function(){
   jQuery.blockUI({
   		message:($('#release')),
		css:{
		border: 'none',
		padding: '0px',
		left: '14%',
		top: '10%',
		backgroundColor: 'transparent',
		color: '#000'
		}});
	});
   jQuery('#supports').click(function(){
   jQuery.blockUI({
   		message:($('#support')),
		css:{
		border: 'none',
		padding: '0px',
		left: '14%',
		top: '10%',
		backgroundColor: 'transparent',
		color: '#000'
		}});
	});
});