$(function() {
  $('#slider').cycle({
    fx:          'fade',
    timeout:     3000,
    speed:       1500
  });

  $("#q").focus(function() {
    if ($(this).val() == "Buscar")
      $(this).val('');
    else
      $(this).select();
  });

  $("#q").blur(function() {
    if ($(this).val() == '')
      $(this).val("Buscar");
  });
});
