function doInfo() {


$("#project-info").hide();

var userAgent = navigator.userAgent;

if (userAgent.match(/iPad/i) || userAgent.match(/iPhone/i)) {
   return false;
}

else {

$("div.project-thumb").mouseover(function() {
    var projDesc = $(this).next().html();
    var projTitle = $(this).next().attr("name");
    $(".project-desc").html(projDesc);
    $(".project-title").html(projTitle);
    $("#project-info").show();
  }).mouseout(function() {
    $("#project-info").hide();
});



 }
}

$(document).ready(function() {doInfo();});
