﻿//funcion banner home  initialize the slideshow when the DOM is ready


$(document).ready(function() {
    $('.slideshow').cycle({
        fx:     'fade',
        speed:  'normal',
        timeout: 5000,
        pager:  '#nav',
		slideExpr: 'img'
     // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});
