$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 5,
        path: "Examples/Example 1/slideshow_images/",  // Relative path with trailing slash.
        captions: {                 
            1:'<a style="float:right; text-decoration:none; color:none; margin-right:15px;" href="http://www.villa-schmidt.de/katalog"></a>',
            2:'<a style="float:right; text-decoration:none; color:none; margin-right:15px;" href="http://www.villa-schmidt.de/katalog"></a>',
            3:'<a style="float:right; text-decoration:none; color:none; margin-right:15px;" href="http://www.villa-schmidt.de/katalog"></a>',
            4:'<a style="float:right; text-decoration:none; color:none; margin-right:15px;" href="http://www.villa-schmidt.de/katalog"></a>',
            5:'<a style="float:right; text-decoration:none; color:none; margin-right:15px;" href="http://www.villa-schmidt.de/katalog"></a>'
          },
		  
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://www.villa-schmidt.de/katalog",
            2:"http://www.villa-schmidt.de/katalog",
            3:"http://www.villa-schmidt.de/katalog",
            4:"http://www.villa-schmidt.de/katalog",
            5:"http://www.villa-schmidt.de/katalog"
    
        },
        
        timerInterval: 6500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
