jQuery(function(){

});

	function submit_form( form_id )
	{
		$('#'+form_id).submit();
		return false;
	}

	function toggle_show( id )
	{
		$('#'+id).toggle('fast');
		return false;
	}

	function rand()
	{
		return Math.ceil(10000*Math.random());
	}

	function select_all(status, form_id)
	{
		$("input[type='checkbox']", '#'+form_id).attr('checked', status);
		return false;
	}