jQuery.noConflict();

document.documentElement.className += ' js';


(function($){
    $(document).ready(function(){
        $('#statusRepair > a').click(function(){
            $('#repairForm').toggle();
            return false;
        });
        $('#closeLink').click(function(){
            $('#repairForm').fadeOut();
            return false;
        });
        
        $('#search_brand_from').submit(function(){
            if ($('#brandSelect').val() !== '') {
                window.location.href = $('#brandSelect').val();
            }
            return false;
        });
        
        $('a[rel="multipleViews"],a[rel="fancybox"]').fancybox({
            'zoomSpeedIn': 300,
            'zoomSpeedOut': 300,
            'overlayShow': false,
            'hideOnContentClick': true,
            'imageScale': true,
            'centerOnScroll': true
        });
    });
})(jQuery);
