$(document).ready(function(){
	$(".project").each(function(){
		$(this).find(".pdesc").animate({
				width: 0
			}, {
				duration: 0, 
				specialEasing: {
					width: 'linear'
				}, 
				complete: function() {
					$(this).css('display', 'none');
				}
			});
		$(this).hover(
			function(){
				$(this).find(".pdesc").css('marginLeft', '0');
				$(this).find(".pdesc").animate({
					width: 271
				}, {
					duration: 125, 
					specialEasing: {
						width: 'linear'
					}, 
					complete: function() {
						$(this).css('display', 'block');
						//alert($(this).position().left);
					}
				});
			},
			function(){
				//$(this).find(".pdetail").fadeOut('fast');
				
				//$(this).outerWidth()
				$(this).find(".pdesc").animate({
					marginLeft: parseInt($(this).css('marginLeft'),10) == 0 ? 271 : 0,
					width: 0
				}, {
					duration: 125, 
					specialEasing: {
						marginLeft: 'linear',
						width: 'linear'
					}, 
					complete: function() {
						$(this).css('display', 'none');
					}
				});
			}
		);
	});
});
