$(document).ready(function() {
$(".menu").hide();
	$("#menubutton").click(function () {
	$(".menu").slideToggle("slow");
	});	
$('ul#imagefader').innerfade({
		speed: 2000,
		timeout: 8000,
		type: 'random_start',
		containerheight: '453px'
	});
});