function SetArgos()
{
var hght = 45;
		$('dt')
			.addClass('dt')
			.each(function(i){
				if (i % 2){
					$(this).addClass('uno').css('top',hght);
					hght += 80;
				} else  {
					$(this).addClass('dos').css('top',hght);
				} 
			})
			.click(function(){
				if( $('#portfolio dd:animated').size() ) return false;
				var that = $(this);
				$('#portfolio dd.showing')
				.animate({top:-590}, 750, 'easeOutQuad', function(){
					$(this).removeClass('showing');
					that.next().animate({top:45}, 750, 'easeInQuad').addClass('showing');
				});
			})
			.eq(0)
			.next()
			.animate({top:45}, 750, 'easeInQuad').addClass('showing');


             
}
