jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery('.box').hover(function(){
		jQuery(".box-text", this).stop().animate({top:'-125px'},{duration:500});
		jQuery(".box-text-content", this).stop().animate({'height':'125px'},{duration:500});
		}, function() {
		jQuery(".box-text", this).stop().animate({top:'0px'},{duration:500});
		jQuery(".box-text-content", this).stop().animate({'height':'0'},{duration:500});
	});
	
	jQuery('.video-play-btn').hover(function(){
		jQuery(this).stop().animate({'opacity':'0.7'},'slow')
	},
	function() {
		jQuery(this).stop().animate({'opacity':'1'},'slow')
	}
	);
	
});

