$(document).ready(function() {
	//ACCORDION BUTTON ACTION	
	$('div.accordionButton').click(function() {
		$('div.accordionContent').slideUp('normal');	
		$(this).next().slideDown('normal');
	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	$("div.accordionContent").hide();
 
});

var options = {
	script: "complete.php?",
	varname: "variableName",
	json: true,
	maxresults: 35
};
var as = new bsn.AutoSuggest('search', options);
