// Setup
$('html').addClass('js-enabled');

// Put disappearing placeholder text in menu items
function formify(el, message)
{
    $(el).val(message);
    $(el).css('color', '#666');
    $(el).focus( function() {
        if($(this).val() == message)
        {
            $(this).val("");
            $(this).css('color', '#000');
        }
    });
}


$(document).ready( function() {
    
    // Search box
    //formify("#headersearch input[type=\"text\"]", "Search our site");


    // contact us form
    //formify("#contact-form input[type=\"text\"]", "Enter text");
    //formify("#contact-form textarea", "Enter text");
    //formify("#saddr", "Enter your postal code here");
    //formify("#newsletter-email", "Enter your email address");
});
