// JavaScript Document

$(document).ready(function(){
  //menu handling
  if($('#page_tag').html()!=''){
    var thePage = $('#page_tag').html();
  }
  else {
    var thePage = null;
  }
  var theLink = thePage.replace('_',' ');
  $('#'+thePage).replaceWith("<span id="+thePage+">"+theLink+"</span>");
  
  
 //Portfolio FX
  $('#contents.portfolio a img').css("opacity", "0.9");
  $('#contents.portfolio div.desc').css("opacity", "0");
  $('#contents.portfolio a img').hover(
    function(){
      $(this).fadeTo("slow", 1);
      $(this).parent().prev('div.desc').fadeTo("slow", 0.8);
    },
    function(){
      $(this).fadeTo("slow", 0.9);
      $(this).parent().prev('div.desc').fadeTo("slow", 0);
    }
  );
});