$(document).ready(function(){
	$('#slide').cycle({
		fx: 'fade',
		speed: 3000,
		timeout: 5000
	});
});
	jQuery().ready(function(){
	jQuery('#nav').accordion({
		autoheight: false,
		header: '.main',
		active: false,
		alwaysOpen: false
	});
	$(".main").click(function(event){
	  window.location.hash=this.hash;
 	});
	$('.close').click(function(){
		$('#nav').accordion('activate',false)
		return true;
	});
	$("a.gal").fancybox();
});

