$(function(){
  toggleGrabThis($("input.grabThis"));
  $("input.grabThis").click(function(){
    toggleGrabThis(this);
  });
  $("textarea.copyThis").click(function(){
    this.select();
  });
  
  //checkHAwidth( $("#image img").get(0) );
  
});

function checkHAwidth(img) {
  if( img.width ) {
    if( img.width > 380 ) $("#alert").show();
  } else {
    $(img).load(checkHAwidth);
  }
}

function toggleGrabThis(checkbox) {
  if(checkbox.length==0) return;
  
  if($(checkbox).attr("checked")) $("textarea.copyThis").html(code);
  else $("textarea.copyThis").html(code_plain);      
}
