
//$.noConflict();
$(document).ready(function() {
    var __err;
    try {
        jQuery(function() {

            try {
                jQuery('ul.sf-menu').superfish();
                /*Jquery implementation for combo using class instead of id starts here*/
                //-----------------------------------------------
                $(".list_box").each(function() {
                    $CurrentDDL = $(this);
                    $CurrentDDL.selectbox();
                });
                $(".list_box_small").each(function() {
                    $CurrentDDL = $(this);
                    $CurrentDDL.selectboxII();
                });
                //-----------------------------------------------
                /*Jquery implementation for combo using class instead of id ends here*/
            }
            catch (e)
            { __err = e; }

        });

        $('.slider_area').cycle({
            fx: 'scrollHorz',
            prev: '.slider_btn_left',
            next: '.slider_btn_right',
            timeout: 0

        });

        $("ul.tabs").tabs("div.panes", { tabs: "li" });

        $('#Items').selectbox();
        $('#Items2').selectbox();
        $('#Items3').selectbox();
        $('#Items4').selectbox();
        $('#Items5').selectbox();
        $('#Items6').selectbox();

    }
    catch (e) {
        __err = e;
    }
});
