﻿//$('#teaser').cycle({ delay: -1000,
//    speed: 1000, fx: 'fade',
//    timeout: 5000,
//    pager: '#nav',
//    pagerEvent: 'click',
//    pause: true,
//    prev: '#prev',
//    next: '#next',
//    cleartype: true,
//    cleartypeNoBg: true,
//    pauseOnPagerClick: true,
//    pagerAnchorBuilder: function (idx, slide) {
//        // return sel string for existing anchor
//        return '<a href="#">&nbsp;</a>';
//    }
//});

$(document).ready(function() {
    // fixed menu right side
    var top = $('#fix').offset().top - parseFloat($('#fix').css('margin-top').replace( /auto/ , 0));
    $(window).scroll(function(event) {
        // what the y position of the scroll is
        var y = $(this).scrollTop();

        // whether that's below the form
        if (y >= top) {
            // if so, ad the fixed class
            $('#fix').addClass('fixed');
        } else {
            // otherwise remove it
            $('#fix').removeClass('fixed');
        }
    });
});
