/*$(function() {
				$('#slide').cycle()
			});*/
			
			
			function randomFromTo(from, to){
       return Math.floor(Math.random() * (to - from + 1) + from);
    }
    
    
    
			
			$(document).ready(function()
			{
				$(".menulist").click(function(event)
				{
					var menu_li = $(this).closest("li");
					menu_li.children("ul").toggle();
				});
				
				
				var getal = randomFromTo(1,4);
				//alert(getal);
				$('#slide1').hide();
				$('#slide'+getal).show();
				
			});
