
$(document).ready(function(){ 

	$('a.sendMessage').click(function() {
		
		//Adding the message_id to the url when reply is hit
		$('#messageSendBox').html('<iframe src="'+$(this).attr('href')+'" width="748" height="260" frameborder="0"></iframe>');		
		blockUI(278, 750, 'community_message_send');
		return false;

	 });


	$('body').append('<div id="preLoader"></div>');
	$('#preLoader').append('<img src="/home/templates/images/chatLoginNowOn.jpg" class="displayNone" alt="" border="0" width="1" height="1">');
	$('#preLoader').append('<img src="/home/templates/images/chatPrivateChatOn.jpg" class="displayNone" alt="" border="0" width="1" height="1">');
	$('#preLoader').append('<img src="/home/templates/images/chatRegisterOn.jpg" class="displayNone" alt="" border="0" width="1" height="1">');
	$('#preLoader').append('<img src="/home/templates/images/chatTipOn.jpg" class="displayNone" alt="" border="0" width="1" height="1">');

});
