function dashboard_init() {	
	$('.view_report').click(function() {		
		id = $(this).attr('id').replace('vw-rpt-', '');
		title = $('#rpt-title-' + id).text();		
		showReport(id, title);		
	});
	
	$('.email_report').click(function() {
		id = $(this).attr('id').replace('eml-rpt-', '');
		title = $('#rpt-title-' + id).text();		
		mailReport(id, title);		
	});
	
	$('.edit_report').click(function() {
		id = $(this).attr('id').replace('ed-rpt-', '');
		editReport(id);
	});
	
	$('.del_report').click(function() {
		id = $(this).attr('id').replace('del-rpt-', '');
		title = $('#rpt-title-' + id).text();	
		deleteReport(id, title);		
	});
	
	$('.view_summary').click(function() {
		proj_id = $(this).attr('id');
		proj_name = $('#proj-name-' + proj_id).text();
		showProjectSummary(proj_id, proj_name);
	});
}