$(document).ready(function() {
  $("#skills li").hover(function(e) { $(this).stop().fadeTo(0, 1); }, function(e) { $(this).fadeTo("slow", 0.5); });
  $("#skills li").hover();
  $("#contact a").hover(function() { $(this).stop().fadeTo("fast", 1); },function() { $(this).fadeTo("slow", 0.5); });
  $("#contact a").hover();
  
  $("#mitem_social a").click(function() { 
    if ($("#sheet_social").css("display") == "none") {
      $("#sheet_skills").fadeOut("slow", function() { $("#sheet_social").fadeIn("slow") } );
    } else {
      $("#sheet_social").fadeOut("slow", function() { $("#sheet_skills").fadeIn("slow") } );
    }
  });
  /*link[rel*=style]*/
  $("#mitem_plain a").click(function() {
    $('link[rel*=style][title="Premium"]').each(function(k){
      if (this.disabled) { this.disabled = false;
      } else { this.disabled = true; }
    });
  });
});