$( function() {

  $( "div#projects ul li" ).bind( "mouseover", function() {
    $( this ).find( "img:first" ).css( "left", "-50px" );
  } ).bind( "mouseout", function() {
    $( this ).find( "img:first" ).css( "left", "0px" );
  } );

  $.ajax( {
    url : "/skype_status.php",
    complete : function( xhr, status ) {
      var _skypeStatus = "Offline";
      switch ( parseInt( $( xhr.responseXML ).find( "statusCode:first" ).text() ) ) {
        case 2 : _skypeStatus = "Online"; break;
        case 3 : _skypeStatus = "Away"; break;
        case 5 : _skypeStatus = "Busy"; break;
      }
      $( "a#skype" ).addClass( _skypeStatus.toLowerCase() );
      $( "a#skype" ).attr( "title", "I'm " + _skypeStatus + "." );
    }
  } );

  $(".js_email").each( function( index, item ) {
    var e = this.getAttribute( "title" );
    $( this ).replaceWith( "<a href='mailto:" + e + "?subject=Email%20From%20Website' title=\"Send me an email.\">" + e + "</a>" );
  } );

} );