jQuery.noConflict();
jQuery(document).ready(function($){
	$('.small-thumb, .lightbox').addClass('clearfix');
	
	$('.image-overflow').hover(function() {
	
		// Stuff that happens when you hover on
		$(this).stop().animate({
			'opacity': 2
			}, 700, 'easeOutSine')

	
	},function() {
	
		// Stuff that happens when you unhover
		$(this).stop().animate({
			'opacity': 0
			}, 700, 'easeOutExpo')
	})
	
});
