slim ticker

by mrjordy

HTML

<div class="TickerBar pillowed">
  <ul class="Ticker">
<li>	We are not simply motivated, but engaged, and fully immersed in the success of this operation. We are not asked to do this. It is not expected of us. We do this because we care, deeply, as a direct result of how much you care about us.	</li>
<li>	Managers genuinely care about employees. Excellent pay. Work is sometimes fast-paced but as long as you contribute, there is no micro-management. The staff is generally more experienced, with many having a former Military background.	</li>
<li>	Hard-working and helpful co-workers, salary is excellent and the work is challenging.	</li>
<li>	Falconwood is an awesome company, with really sharp people. They pay well, and you feel very much part of the team.	</li>
<li>	Uses a model to keep overhead low (no extravagance) which allows the to make competitive bids while still providing competitive salaries.	</li>
<li>	The pay is great. Everyone I've met with at the company is really awesome. It feels like a family.	</li>
<li>	This is the best (and most challenging) job I've ever held at the best company I've ever worked	</li>
<li>	Most employees are incredibly knowledgeable and friendly. Felt very comfortable from day 1. I would say most of the people here are very competent and definitely carry their own weight. Most Team Leads are very passionate of their work, supporting the fleet and they dont micromanage their people	</li>
<li>	The company itself is good (i.e., solid pay, you get a laptop, etc). Corporate HQ isn't bad. The President is very engaging and helpful. 	</li>
<li>	Very good company. Solid pay and benefits. Feels like a family.	</li>
<li>	With a small Company the goals and objectives of the Company are focused and you don't get lost in the shuffle of a big Firm	</li>
<li>	Small company with caring atmosphere...almost like family. Owner/founder/president is very engaged, but doesn't meddle or interfere with tasks assigned to the team. Very competitive...

CSS

.Ticker {
  list-style-type: none;
  font-family: kalinga;
  margin: 0;
  padding: 10px;
  padding-left: 30px;
  line-height: 20px;
  height: 10px;
  overflow: hidden;
}

.TickerBar {
  background: lightyellow;
  height: auto;
}

JavaScript

function TickerAutoPlay() {
  $(".Ticker li:first-child").slideUp(function() {
    $(this).appendTo(".Ticker").fadeIn();
  });
}
setInterval(function() {
  TickerAutoPlay()
}, 12000);