$(document).ready(function(){

  $(".project_container").hover(function () {
    $(this).children(".project_hover").toggle();
    $(this).children("h3").hide();    
  }, function () {
    $(this).children(".project_hover").toggle();
    $(this).children("h3").show();    
  });

  $(".project_hover").click(function () {
    var link_url = $(this).attr("rel");
    window.location = link_url; 
  });

  $(".home_projects_container").hover(function () {
    $(this).children(".home_project_hover").toggle();
    $(this).children("h3").hide();    
  }, function () {
    $(this).children(".home_project_hover").toggle();
    $(this).children("h3").show();    
  });

  $(".home_project_hover").click(function () {
    var link_url = $(this).attr("rel");
    window.location = link_url; 
  });

  $("#arrow_right a").click(function(){
    $("#thumb_container").scrollTo( '+=890px', 1000, {axis:'x'} )
    return false;
  });
  
  $("#arrow_left a").click(function(){
    $("#thumb_container").scrollTo( '-=890px', 1000, {axis:'x'} )
    return false;
  });	

});



