﻿$(document).ready(function() {
    $('.main').jScrollPane(
        {
            showArrows: true,
            scrollbarWidth: 10,
            reinitialiseOnImageLoad: true
        }
    );
    $(".moreInfo").each(function() {
        var dlg = $(this).parent().find(".description");
        $(this).data("dialog", dlg);
        dlg.dialog({
            bgiframe: true,
            autoOpen: false,
            resizable: false,
            draggable: false,
            width: '500px',
            modal: true
        });
    }).click(function() { $(this).data("dialog").dialog("open"); });

    var galleries = $('.ad-gallery').adGallery({
        loader_image: 'Templates/UI/Styles/Images/Gallery/loader.gif',
        thumb_opacity: 0.7, slideshow: {
            enable: true,
            autostart: true,
            speed: 4000,
            start_label: 'Start',
            stop_label: 'Stop',
            stop_on_scroll: true
        }
    });
    $.highlightFade.defaults['speed'] = 25000;
    $('td.red').highlightFade('#FFFBC4');


    $('#newscontainer').cycle({
        fx: 'fade',
        speed: 6500
    });

   // $(".acceptTerms").click(function() { $(".descAcceptTerms").dialog("open"); });

    $(".descAcceptTerms").dialog({
        bgiframe: true,
        autoOpen: false,
        resizable: false,
        draggable: false,
      
        width: '800px',
        modal: true
    });

    function CloseWindow() { $(".descAcceptTerms").dialog("close"); }
});
