$(document).ready(function () {
	

	// If there is a checkbox called select_all, implement the functionality
	$("#select_all").click(function()				
	{
		var checked_status = this.checked;
		$("input").each(function()
		{
			this.checked = checked_status;
		});
	});
	
	// Remove values from login forms
	$('#login-email, #login-password').focus(function(){
		if ($(this).val()!='') { $(this).val(''); }
	});
	$('#login-email').blur(function(){
		if ($(this).val()=='') { $(this).val('Email'); };
	});
	$('#login-password').blur(function(){
		if ($(this).val()=='') { $(this).val('Password'); };
	});
	
	// Submit the jump menu on change
	$('#jump_menu_form select').change(function(){
		$(this).parent().parent().submit();
	});
	
});