﻿
$(document).ready(function () {

    //    $('form').submit(function () {
    //        $.blockUI({
    //            css: {
    //                border: 'none',
    //                padding: '15px',
    //                backgroundColor: '#000',
    //                '-webkit-border-radius': '10px',
    //                '-moz-border-radius': '10px',
    //                opacity: .5,
    //                color: '#fff'
    //            }
    //        });
    //        return true
    //    })

    $('.lightbox').lightBox()
    $('.button').button()


    $('.product-image-file').change(function () {
        var name = $(this).val().replace(/^.*\\/, '')
        $(this).parents('.product-image-field').find('input[type=text]').val(name);
    })

    $('.form-input').change(function () {
        $(this).parents('form').find('.inactive-submit').removeClass('inactive-submit').addClass('active-submit')
    })

})
