function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}


/* Preload images script */

var myimages=new Array()
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}

//Enter path of images to be preloaded inside parenthesis. Extend list as desired.
preloadimages("images/btn_email-me_hover.png","images/btn_email-me_active.png","images/btn_hire-me_hover.png","images/btn_hire-me_active.png");


/* JQUERY EASING */

$(document).ready(function() {
  $('.thumb-hover').show().fadeTo(0,0);
  
  $('.thumb').hover(
    function() {
      $('.thumb-hover',this).stop().animate({left:0,opacity:.75},{duration:350,easing:'easeOutCirc'});
    },
    function() {
      $('.thumb-hover',this).stop().animate({left:-226,opacity:0},{duration:350,easing:'easeOutCirc'});
    }
  );
});

