$(document).ready(function() {
	$('.hireme a').hover(function() { //mouse in
		$(this).find('span').animate({ opacity: '0' }, 400);
	}, function() { //mouse out
		$(this).find('span').animate({ opacity: '1' }, 400);
	});
	
	
	$('.main-btn').hover(function() { //mouse in
		$(this).find('span').animate({ top: '128px' }, 500);
	}, function() { //mouse out
		$(this).find('span').animate({ top: '-128px' }, 200);
	});
	
	$('.slicer').hover(function() { //mouse in
		$(this).find('span').animate({ top: '0px' }, 500);
	}, function() { //mouse out
		$(this).find('span').animate({ top: '-143px' }, 500);
	});
	
	
});
