Sales for Startups

Atlas Sales Symposium, 1/27/2011

Approximately 30 CEOs, angel investors, VCs, and sales executives joined together to talk about best practices for Sales in startups.


Want our whitepaper on Sales 2.0?
Just drop us a line here and we’ll shoot you a copy.


Presenters
Watch the videos
Sorry for the low quality and incompleteness of the videos. Our high school videographer is still clearly learning the tools of his trade!

Opening Remarks - Mike Crill


Sales 1 - Tyler Dary


Startup Stages - Ross Rosen


Qualities of the Perfect Salesperson - Tom Huseby


Unbelievable Product - Tom Huseby


Things I Hate to Hear as a VC - Tom Huseby


Sales Reporting - Tyler Dary


Art of the Pitch - Anne Payne


Closing Remarks
') // Float left to display horizontally, readjust .slides width .css({ 'float' : 'left', 'width' : slideWidth }); // Set #slideInner width equal to total width of all slides $('#slideInner').css('width', slideWidth * numberOfSlides); // Insert controls in the DOM $('#slideshow') .prepend('Clicking moves left') .append('Clicking moves right'); // Hide left arrow control on first load manageControls(currentPosition); // Create event listeners for .controls clicks $('.control') .bind('click', function(){ // Determine new position currentPosition = ($(this).attr('id')=='rightControl') ? currentPosition+1 : currentPosition-1; // Hide / show controls manageControls(currentPosition); // Move slideInner using margin-left $('#slideInner').animate({ 'marginLeft' : slideWidth*(-currentPosition) }); }); // manageControls: Hides and Shows controls depending on currentPosition function manageControls(position){ // Hide left arrow if position is first slide if(position==0){ $('#leftControl').hide() } else{ $('#leftControl').show() } // Hide right arrow if position is last slide if(position==numberOfSlides-1){ $('#rightControl').hide() } else{ $('#rightControl').show() } } });