jQuery(document).ready(function(){

	FLIR.init( { path: 'http://www.fcf7.com.br/wp-content/themes/futebol7/js/facelift/' } );
	jQuery("h1.titulo, h3.vejaMais").each( function() { FLIR.replace(this); } );
   
	jQuery('ul.menu').superfish();
	
	//DD_belatedPNG.fix('#topo, #menu li a, #footer');
	
	jQuery('input[type="text"]').focus(function() {  
       if (this.value == this.defaultValue){  
           this.value = '';  
       }  
      if(this.value != this.defaultValue){  
          this.select();  
      }  
   });  
  jQuery('input[type="text"]').blur(function() {  
     if (this.value == ''){  
         this.value = (this.defaultValue ? this.defaultValue : '');  
      }  
   });
});