/* Author: James King, Little Tree Software */

$(function(){
$('.products .three').hover(
							   
	function() { 
		$(this).find('.overlay').animate({ 
        top: 0
      }, 150 );
	}
	,
	
	function() { 
		$(this).find('.overlay').animate({ 
        top: '90px'
      }, 150 );
	}
	  
	  ).click(function() {
		  	
			window.location = $(this).find("a").attr("href");
			
		  });
		  
		  });



















