
jQuery(document).ready(function(){
  $('#search-field').attr({value: 'search', style: 'color:#999;'});
  $('#search-field').focus(function(){
  	if($(this).attr("value")=="search") $(this).attr({value: '', style: 'color:#222;'});
  });
  $('#search-field').blur(function(){
  	if($(this).attr("value")=="") $(this).attr({value: 'search', style: 'color:#999;'});
  });
  
  $('#email').attr({value: 'enter your email', style: 'color:#999;'});
  $('#email').focus(function(){
  	if($(this).attr("value")=="enter your email") $(this).attr({value: '', style: 'color:#222;'});
  });
  $('#email').blur(function(){
  	if($(this).attr("value")=="") $(this).attr({value: 'enter your email', style: 'color:#999;'});
  });
});

