jQuery(document).ready(function($){
//	Cufon.replace('#header .right-top .userlinks, #header .right-top .info, #nav a, #bottom-nav a, .tweets .title, .tweets .tweet, .footer-links, label',{'hover':true});
	
	$('.searchform .textbox, .newsletter-form .textbox').focus(function(){
          $(this).prev().hide();
     }).blur(function(){
          if($(this).val()==''){
               $(this).prev().show();
          }
     })
})
