﻿var showModal = function (selector) {
    $(selector).click();
};

$(document).ready(function () {
    $('input.default, textarea.default')
        .focus(function () {
            if (this.value == this.title) {
                this.value = '';
            }
        })
        .blur(function () {
            if (this.value == '') {
                this.value = this.title;
            }
        });


    var $productStockInfo = $('.p_list_stock');

    $productStockInfo.find('em').each(function () {
        var $this = $(this);
        if ($this.attr('inStock') != 'True') {
            var $stockImg = $this.parent().find('img');
            var newImgUrl = $stockImg.attr('src').replace('ico_right.gif', 'ico_erro.gif');
            $stockImg.attr('src', newImgUrl);
        }
    });

    $productStockInfo.find('span').each(function () {
        var $this = $(this);
        if ($this.text() == '') {
            $this.remove();
        }
    });

    var printPage = function () {
        window.print();
    };

    $('.btn_print').click(function (e) {
        e.preventDefault();
        printPage();
    });
});
