function workThumbRollOver(){
	jQuery(this).find('.workthumb_overlay').stop().animate({bottom: '-145px'}, {duration:400, easing: 'easeInOutQuint'});
	jQuery(this).find('img').animate({opacity: '0.75'},{duration:400, easing: 'easeInOutQuint'});
}

function workThumbRollOut(){
	jQuery(this).find('.workthumb_overlay').stop().animate({bottom: '-180px'}, {duration:400, easing: 'easeInOutQuint'});
		jQuery(this).find('img').animate({opacity: '1'},{duration:400, easing: 'easeInOutQuint'});
}

jQuery(function(){
	jQuery('.work_thumb').hoverIntent(workThumbRollOver, workThumbRollOut);
});

