$(function() 
		
		{
		
		
			//Menu functions
			$("#sub_menu").slideToggle("slow");
   				 $(".menu_button").click(function () 
   				 {
    			  $("#sub_menu").slideToggle("slow");
     			 });

			$(".fade").hover(function() 
		
				{
		
					$(this).animate({ backgroundColor: "#e1e1e1" }, 1000);
					},function() 
				{
			$(this).animate({ backgroundColor: "#88888" }, 500);
			
			});

			
			// Options for SuperBGImage
			$.fn.superbgimage.options = 
			
				{
					randomtransition: 0, // 0-none, 1-use random transition (0-7)
					slideshow: 1, // 0-none, 1-autostart slideshow
					slide_interval: 4000, // interval for the slideshow
					randomimage: 0, // 0-none, 1-random image
					speed: 'slow' // animation speed
		
				};

			// initialize SuperBGImage
			$('#thumbs').superbgimage().hide();
			
			
	
				
		});
