$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 4,
        path: "images/homeslideshow/",  // Relative path with trailing slash.
        captions: {    
            1:'<b>New Years Eve 2011</b> <div style="font-size:14px;margin-top:5px;">Come enjoy New Years at Porto Vivo. Call 631-385-8486 for reservations. Click above for menus.</div>',
			2:'<b>Pass the Meatballs Night!</b> <div style="font-size:14px;margin-top:5px;">Sunday & Mondays - bring the whole family. Call 631-385-8486 for reservations.</div>',
			3:'<b>PORTO VIVO Presents A DINNER THEATER EXPERIENCE</b> <div style="font-size:14px;margin-top:5px;">Call 631-385-8486 for Reservations & Tickets</div>',
			4:'<b>The Wine Cellar Experience</b> <div style="font-size:14px;margin-top:5px;">A private event like no other. Call our Concierge at 631-385-8486 for details.</div>', 
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://porto-vivo.com/pdf/Valentines2012.pdf",
            2:"",
            3:"",
			4:"",
			
        },
        linksOpen:'sameWindow',
        timerInterval: 10500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
