// Start jQuery

$(document).ready(function() {

// GLOBALS //

/* Hover functionality site-wide **********************************************/
	
	$('.hover').hover(function() {
	  $(this).addClass('active');
	}, function() {
	  $(this).removeClass('active');
	});
	


/* Image post - Hover qualities ***********************************************/
    
    $('div.reveal').hover(function(){
    	$(this).find('img').animate({ top:'270px' },{ queue: false, duration: 300 });
		}, function(){
		$(this).find('img').animate({ top:'0' },{ queue: false, duration: 300 });
	});


}); // End jQuery
