﻿$(document).ready(function () {

    // Homepage SlideShow 
    $('.slideshow').cycle({
        fx: 'fade',
        timeout: 8000
    });

    //Content Swap HomePage
    $('#secondaryNavi li').mouseenter(function () {
        var contentCount = $(this).index("#secondaryNavi li");
        $('#contentSwap div').hide().eq(contentCount).show();
    });

    $('#secondaryNavi li').mouseleave(function () {
        var contentCount = $(this).index("#secondaryNavi li");
        $('#contentSwap div').hide().eq(0).show();
    });

});


