// Standard jQuery header
(function($) {
	$(document).ready(function() {
		//Horizontal Sliding
		$('.proyecto').hover(function(){
			$(".descripcion", this).stop().animate({opacity:'.9'},{queue:false,duration:200});
		}, function() {
			$(".descripcion", this).stop().animate({opacity:'0'},{queue:false,duration:200});
		});
	})
})(jQuery);