$(document).ready(function() {

	//remove the blockUI set by the parent window /home/profile.php
	if($('#buy_time').length>0) {
		$('#buy_time').click(function() {
			window.parent.unblockUI('buy_time');
			return false;
		});
	}


	//remove the blockUI set by the parent window /home/profile.php
	if($('#register').length>0) {
		$('#register').click(function() {
			window.parent.unblockUI('register');
			return false;
		});
	}


	//remove the blockUI set by the parent window /home/profile.php
	if($('#login').length>0) {
		$('#login').click(function() {
			window.parent.unblockUI('login');
			return false;
		});
	}

	//remove the blockUI set by the parent window /home/profile.php
	if($('#close_messages').length>0) {
		$('#close_messages').click(function() {
			window.parent.unblockUI('community_messages');
			return false;
		});
	}


});
