/*
 *		coursefinder.js
 *
 *	Script to load the tab functionality of jQueryUI tabs.
 *
 *	Author:	Allan Oliveira, Digital Media Unit
 *	Date:		16th July, 2008.
*/

// Wait till page load to call init function
$(document).ready(init);

function init()
{
	// Set up auto complete on search field
	var autocompleter = $("#course_search").autocomplete("/local/wcurtin/AJAXProxy.cfc", { extraParams: {method:"autocomplete" }, lineSeparator: "," });
	
};

