$(document).ready(function() { 
						   
// Set up our options for the slideshow...
    var myOptions = {
        noImages: 4,
        path: "/img/slides/",  // Relative path with trailing slash.
        captions: {                 
            1:'<h1>Moving to Spain has never been so easy</h1><p>Whether you are applying for your NIE or renewing your existing documents, we can help you with the application process.<a href="/contacts.asp" class="b1">Move to Spain</a> </div>',
            2:'<h1>Buying, selling or importing a car into Spain</h1><p>We can help you to import and register your car in Spain (Name transfers, homologations, payment of road taxes, ITV, documents…)</p><a href="/contacts.asp" class="b1">Save money with MeEXpress</a> </div>',
			3:'<h1>Offices for rent in Spain</h1><p>We help you to save your time and make sure you get what you want.<a href="/contacts.asp" class="b1">Relocate your business</a> </div>',
            4:'<h1>Working and starting a business in Spain</h1><p>To become Autonomo (self- employed) you will need the services of a gestor (accountant).</p><a href="/contacts.asp" class="b1">Register as self-employed!</a> </div>'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"",
            2:"",
			3:"",
			4:"",
        },
        linksOpen:'newWindow',
        timerInterval: 6500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#slider1').easySlides(myOptions);

						   
});
