$(document).ready(function(){

  var search = $('input[name=search]').val();

  $('input[name=search]').focus(function(){
   if($(this).val() == search)  {
    $(this).val('') ;
   }
  })

  $('input[name=search]').blur(function(){
   if($(this).val() == '')  {
    $(this).val(search) ;
   }
  })

  $("#form_search").submit(function(){
    if($('input[name=search]').val() == search) {
     return false;
    }
  })

});

function expandir(expandir) {

	$(".flash").animate({'height': 272}, function(){
    if(expandir == 1) {
      $(".flash .swf").html('');
      $(".flash .swf").flash({src:'_app/_swf/home.swf', width:'100%', height:345, wmode:'transparent', flashvars: { home: '1' } });
    }
  });
}
