// --------------- anchors 2 select  ----------- 
jQuery.noConflict();
jQuery(document).ready(function($) {
    $(document).ready(function() {
        // ========================== Anchor to Select razeni
        $('.sorting-action select').change(function() {
            var valIndex = "";

            $(".sorting-action select option:selected").each(function () {
                valIndex = $(this).val();
            });
            if (valIndex!=0) { 
                document.location.href = $('.sorting-box a').eq(valIndex).attr('href');
            }
        });

        // ========================== Anchor to Select listovani
        $('.listing-action select').change(function() {
            var valIndex = "";

            $(".listing-action select option:selected").each(function () {
                valIndex = $(this).val();
            });
            if (valIndex!=0) { 
                document.location.href = $('.listing-box a').eq(valIndex).attr('href');
            }
        });
    });  // konec docReady
});

