jQuery(document).ready(
	function($)
	{
		$('div.accordion').accordion({
										collapsible: 	true,
										active:			false,
										autoHeight:		false,
										change:			function(event,ui)
														{
															if(ui.newHeader.parent().attr('id') == 'available-djs')
															{
																location.href = ui.newHeader.find('a').attr('href');
															}
														}
									});
	});    
