﻿$(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;
            }
        });

    $(".slidingDiv2").hide();
    $(".linkbutton").show('slow');

    $('.linkbutton').click(function (e) {
        e.preventDefault();
        $(".slidingDiv2").slideToggle();
    });

    $('#product-table .table-blue-bg td p').each(function() {
        var $this = $(this);
        if ($this.html() == '') {
            $this.html('N/A');
        }
    });
});
