﻿
//changes Image on startpage, after arrow click
$(function() {

    $('#pnlSlideShow').cycle({
        fx: 'scrollHorz',
        prev: '#aSlideLeft',
        next: '#aSlideRight',
        timeout: 0,
        speed: 1300,
        easing: 'backinout',
        before: HideSlideButtons,
        after: ShowSlideButtons
    });

    function HideSlideButtons() {
        $('.pnlSlideButtons a').css('display', 'none');
    }

    function ShowSlideButtons() {
        $('.pnlSlideButtons a').css('display', 'block');
    }

});
