$(document).ready(function() {
  $(".work").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});


  $('.work:nth-child(3n)').css('margin-right','0');
  $('.work').hover(
    function() {$(this).addClass('hover')},
	function() {$(this).removeClass('hover')}
  )
  $('.work').hover(
    function(){$(this).find('a.arrow').addClass('hovered')},
	function() {$(this).find('a.arrow').removeClass('hovered')}
  )
  
  $('.link:nth-child(3n)').css('margin-right','0');
//  var divs = $('.work')
//  divs.hide();
//  var i=0;
//  (function showDivs(){
//	divs.eq(i++).fadeIn(300, showDivs); 
//  })();
//  
//  $(".work").hover(
//  function () {
//    $(this).toggleClass("hover");
//  },
//  function () {
//    $(this).toggleClass("hover");
//  }
//  );
  
  $('#categories ul li:last-child, #archives ul li:last-child').css('border-bottom','1px dotted #999')
  
  $('#send-button').hover(
    function(){
	  $(this).css('background-position', '0 -36px')
	}, function() {
	  $(this).css('background-position', '0 0')
	}
  );
});
