/**
*	On-load event handler
**/
$j(document).ready(function() 
{
	// Event handler for filter button
	$j('#btn_filter').click(function()
	{
		var field_id = $j('#educ_field_id').val();
		var level = $j('#educ_field_id').attr('cur-educ-level');
		redirect('/site/internship/list/' + level + '/' + field_id);
	});

	// Event handler for click on internship
	$j('table.list tr').click(function()
	{
		var id = this.id.replace('row_', '');
		ShowDetails(id);
	});

	//ScrollParentPage();	
});

// -----------------------------------------------------------------------

/**
*	ShowDetails
*
*	Shows a lightbox with internship details.
*
*	- iship_id: Internship id
**/
function ShowDetails(iship_id) 
{
	$j.get(WEB_ROOT + '/site/internship/details/' + iship_id, function(resp)
	{
		$j('#infobox').html(resp).jqm().jqmShow();
		
		$j('#infobox .btn_submit').click(function()
		{
			redirect('/site/application/login/' + iship_id);
		});
		
		// Treeview for tasks
		$j('#infobox ul.task_tree').treeview({collapsed: true});
	});
}
