var slideshow_dir = "http://www.stichtingosso.eu/wp-content/themes/osso-theme/images/slideshow";
var n_slideshow_images = 3;

var current_slideshow_img = 1;

jQuery(document).ready(function()
	{
		// Make menu items clickable as a whole
		
		jQuery("#menu li").click(function(e) {
			window.location = jQuery(this).find("a").attr("href");
		});
		
		// Add slideshow images to the homepage
		
		if(jQuery("#intro #slideshow"))
		{
			for(var i = 2; i <= n_slideshow_images; i++)
			{
				jQuery("#intro #slideshow").append("<img src=\"" + slideshow_dir + "/slide" + i + ".jpg\" alt=\"\" id=\"slideshow-img-" + i + "\"/>");
				jQuery("#slideshow-img-" + i).hide();
			}
			
			setInterval(function()
				{
					jQuery("#slideshow-img-" + current_slideshow_img).fadeOut("slow");
					if(++current_slideshow_img > n_slideshow_images) current_slideshow_img = 1;
					jQuery("#slideshow-img-" + current_slideshow_img).fadeIn("slow");
				},
				7000
			);
		}
	});

