$(function() {

  //APAGA VALUE
  $("form input[type='text'], form textarea").focus( function() {
    if ($(this).val() == this.defaultValue) {
      $(this).val('');
    }
  });
  
  $("form input[type='text'], form textarea").blur(function() {
    if ($(this).val() == '') {
      $(this).val(this.defaultValue);
    }
  });

  $("a.album").colorbox();
  $("a.fotoesp").colorbox();
  $("a.videoyt").colorbox({iframe:true, width:"625px", height:"544px"});
  
});





