/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

jQuery(document).ready(function() {
    // Handler for .ready() called.
    jQuery('#newsletter').focus(function(){
	jQuery('#newsletter').val('');
	jQuery(this).css("color","black");
    });
});
