/*
USERS
*/
/*
INIT
*/
function init() {
	$(function() { 
		//	Entire table row clickable for inbox messages.
		$('#messages-inbox tr').each(function(index) {
			$(this).bind('mouseover',function() {
				$(this).css('cursor','pointer');
			});
			$(this).bind('mouseover',function() {
				$(this).css('mouseout','auto');
			});
			$(this).bind('click',function() {
				document.location = $(this).find('td:last-child a').attr('href');
			});
		});

	})
}
/*
GENERAL
*/
init();

