$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 7,
        path: "images/",  // Relative path with trailing slash.
        captions: {
			1:'<b>An Institution with a National Agenda and a Global Focus</b>',
            2:'<b>State-of-the-Art Teaching Facilities</b>',
            3:'<b>An Institution with a National Agenda and a Global Focus</b> ',
            4:'<b>Taking Tertiary Education a Step Further</b> ',
            5:'<b>An Institution with a National Agenda and a Global Focus</b>',
            6:'<b>A Cutting Edge, Global Oriented ICT Driven University</b>',
			7:'<b>Top Third University in Ghana</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.regentghana.net/news/rank.html",
            2:"http://www.regentghana.net",
            3:"http://www.regentghana.net",
            4:"http://www.regentghana.net",
			5:"http://www.regentghana.net",
            6:"http://www.regentghana.net"
        },
        linksOpen:'newWindow',
        timerInterval: 10000, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#flashcontainer').easySlides(myOptions);

})
