﻿
$(document).ready
(function(){


    $("#Scroller").after('<div id="nav">').cycle({
        fx: 'fade',
        speed: 500, //-- Controls the transition speed
        timeout: 7000, //-- Controls the amount of time the item is shown
        pager: '#nav',
        pause: 1
    });

    //-- Remove text values from nav items
    $("#nav a").text("");

    //-- Horizontally center the nav items
    //var leftPos = Math.round($("#ScrollerParent").width() / 2)
    //$("#nav").css("left", leftPos);

});
