// Standard jQuery header
(function($) {
	$(document).ready(function() {
		//Horizontal Sliding
		$('.proyecto').hover(function(){
			$(".info-proyecto", this).stop().animate({top:'160px'},{queue:false,duration:200});
		}, function() {
			$(".info-proyecto", this).stop().animate({top:'250px'},{queue:false,duration:200});
		});
	})
})(jQuery);