﻿
$(document).ready(function () {
    //Number Validation
    $("[datatype='number']").each(function () {
        var min = $(this).attr('min');
        if (min == undefined) min = 0;
        var max = $(this).attr('max');
        if (max == undefined) max = 999999999;
        $(this).jStepper({ minValue: min, maxValue: max });
    });

    //innerFade Deals
    $('.dealPages').innerfade({
        animationtype: 'fade',
        speed: 'normal',
        timeout: '14000',
        type: 'random',
        containerheight: '375px',
        children: 'li'
    });

    $('.carousel').jcarousel({
        auto: 3,
        wrap: 'last',
        scroll: 1
    });

});

