var j = jQuery.noConflict();
j(document).ready(function() {
	j(".project:not('.featured')").hover(function(e) {
		j(this).children('.caption').stop().animate({
			bottom: 0
		}, 250);
	}, function() {
		j(this).children('.caption').stop().animate({
			bottom: "-100%"
		}, 500);	
	});
	j('.jobPost').hover(function() {
		j(this).children('.skills').fadeIn(250);
	}, function() {
		j(this).children('.skills').fadeOut(250);
	});
	
	j('.fancybox').fancybox();
	
});
