﻿
$(document).ready(function() {

    // http://www.malsup.com/jquery/cycle/options.html
    var $ss = $('#slideshow');
    // add slides to slideshow (images 2-8)
    $ss.append('<img src="images/home_promo/multisport.jpg" width="713" height="316" />');
    $ss.append('<img src="images/home_promo/garmin.jpg" width="713" height="316" />');

    $ss.cycle({
        speed: 500,
        timeout: 5000,
        pager: '#homepromonav',
        pagerEvent: 'mouseover',
        pauseOnPagerHover: true
    });

    $("a[rel^='prettyPhoto']").prettyPhoto();



});

