$(document).ready(function(){
  $('.replace').flash(
		{ 
			src: 'http://gcf.hlservers.com/wp-content/themes/wnts-gcf/js/myriad_pro.swf', 
			flashvars: { 
				css: [
					'* {color:#032b5e}'
				].join(' ')
			}
		},
		{ version: 8 },
		function(htmlOptions) {
			htmlOptions.flashvars.txt = this.innerHTML;
			this.innerHTML = '<div>'+this.innerHTML+'</div>';
			var $alt = $(this.firstChild);
      htmlOptions.height = $alt.height();
      htmlOptions.width = $alt.width();
      $alt.addClass('alt');
      $(this)
      	.addClass('flash-replaced')
        .prepend($.fn.flash.transform(htmlOptions));						
		}
	);
//apaga nome Buscar do input
$("#searchform #s").focus(function() {
 if ( $(this).val() == "Buscar")
    $(this).val('');
});
$("#searchform #s").blur(function() {
 if ( $(this).val() == "")
    $(this).val('Buscar');
});
//fade da imagem da home
$("#destaque img").ready(function(){$("#destaque img").fadeIn(1500);});
});







