﻿$(document).ready(function () {
    $('img.defer').each(function () {
        $(this).attr('src', $(this).attr('path'));
        $(this).removeAttr('path');
    });

    $("#showcase").awShowcase({
        content_width: 981,
        content_height: 200,
        fit_to_parent: false,
        auto: true,
        interval: 8000,
        continuous: true,
        loading: true,
        tooltip_width: 200,
        tooltip_icon_width: 32,
        tooltip_icon_height: 32,
        tooltip_offsetx: 18,
        tooltip_offsety: 0,
        arrows: false,
        buttons: false,
        btn_numbers: false,
        keybord_keys: true,
        mousetrace: false,
        pauseonover: false,
        stoponclick: false,
        transition: 'hslide',
        transition_delay: 300,
        transition_speed: 500,
        show_caption: 'none',
        thumbnails: true,
        thumbnails_position: 'outside-last',
        thumbnails_direction: 'horizontal',
        thumbnails_slidex: 1,
        dynamic_height: false,
        speed_change: true,
        viewline: false,
        custom_function: null
    });
});
