﻿$(document).ready(function () {
    $('.keywords').focus(function () {
        if ($(this).val() == 'separate keywords with commas') {
            $(this).val('');
        }
    }).blur(function () {
        if ($(this).val() == '') {
            $(this).val('separate keywords with commas');
        }
    });
});	
