// JavaScript Document
$(document).ready(function(){
	$("#exhibitors")
	.after('<div id="logo">')
	.cycle({ 
		fx: 'fade',
		speed:  2500,
		timeout: 7000,
		pager: '#adnav'
	});
});


$(document).ready(function(){
	$('.accordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});

