//SLIDE RESPONSÁVEL PELAS MENSSAGENS QUE APARECEM EMBAIXO DA FOTO
$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 5,
        path: "images/home/slide/",  // Relative path with trailing slash.
        captions: {
			<!--TRECHO DO CÓDIGO ONDE VAI COLOCAR AS MENSSAGENS-->            
			1:'<b>EM BREVE</b> <div style="font-size:14px;margin-top:5px;">Novidades para a sua cl&iacute;nica</div>',
			
            2:'<b>R&Aacute;PIDEZ:</b> <div style="font-size:14px;margin-top:5px;">Deixe as filas de atendimento mais r&aacute;pidas</div>',
			
            3:'<b>CLIENTES:</b><div style="font-size:14px;margin-top:5px;">Seus clientes satisfeitos com o atendimento</div>',
            
            4:'<b>PORTABILIDADE:</b> <div style="font-size:14px;margin-top:5px;">Marca&ccedil;&otilde;es de exames, consultas e resultados online</div>',    
			
            5:'<b>EMPRESA SOFTDAM:</b> <div style="font-size:14px;margin-top:5px;">Sempre pronta a desenvolver para voc&ecirc;</div>'			
        },
      
	  /*LINKS DAS IMAGENS QUE ESTÁ PASSANDO NO SLIDE*/
	  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:"#",
            5:"#"           
        },
		
        linksOpen:'newWindow',
        timerInterval: 6000, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
