function closeDiv(ele){
	$(ele).animate({ 
        width: "100px",
		height: "100px",
        opacity: 0.3
      }, 750, 'easeOutBounce' );
}

$(document).ready(function() {
	$("#content div").click(function(){
		var id = $(this).attr('id');
		var i = jQuery.inArray( id, arr );
		if ( i == -1 ){
			arr.push(id);
			$(this).animate({ 
		        width: "50%",
				height: "100%",
		        opacity: 1
		      }, 750, 'easeOutBounce' );
			$(this).find('.vimeo').show();
		}else{
			arr.splice(i,1);
			$(this).animate({ 
		        width: "100px",
				height: "100px",
		        opacity: 0.3
		      }, 750, 'easeOutBounce' );
			$(this).find('.vimeo').hide();
		}
	});
});
