﻿$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 4,
        path: "themes/default/images/",  // Relative path with trailing slash.
        captions: {                 
            1:'<b>博鳌亚洲论坛青年领袖圆桌会议举行</b> ',
            2:'<b>我们在哥本哈根</b> ',
            3:'<b>51tree.org</b> ',
			4:'<b></b> '
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://www.51sim.org/news/39.html",
            2:"http://www.51sim.org/news/37.html",
            3:"http://www.51tree.org",
			4:"#"
        },
        linksOpen:'newWindow',
        timerInterval: 6500, // 6500 = 6.5 seconds
		randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
