﻿// JScript File

/* Project Name: Nace
Client Name: 
Purpose/Function: rotate images
Author: KI

 Version                 Author            Date         Reason 
 1.0                      KI             07/22/2009   Initial development
*/

$(document).ready(function() {

//Here is rotation functionality. It uses jquery cycle plugin
function startRotation() {
    $('#sildes').cycle({
        fx: 'fade',       
        timeout: 3000,       
        fit: 0             
    });
}

//start rotation after load content
startRotation(); 
})


