var quotes = new Array(5);
var i = -1;
quotes[0] = "An effective website requires a clear definition of goals, comprehensive planning and expert execution.<span class=\"color-one\">Pel Solutions can help you to generate more sales and improve your business.</span>";
quotes[1] = "Price level and quality of service are key factors to win over competitors. <span class=\"color-one\">Pel Solutions can help you to meet the highest standards at the lowest price possible.</span>";
quotes[2] = "Pel Solutions makes website developing easy, painless and rewarding. <span class=\"color-one\">We make our clients happy and their clients happy.</span>";
quotes[3] = "Pel Solutions care about web standards. <span class=\"color-one\">All our websites are W3C compliant and look beautifully on all major browsers and platforms.</span>";
quotes[4] = "With an <a href=\"http://pelcart.com\">e-commerce website</a> you effectively have another shop. <span class=\"color-one\">Only this one will have a worldwide audience and doesn't cost nearly as much to run.</span>";
var interval = setInterval("changeQuote()", 10000);

function changeQuote()
{
	$("#sticker h2").fadeOut('slow', function(){
		i = i == 4 ?	0	:	++i;
		$("#sticker h2").html(quotes[i]);
		$("#sticker h2").fadeIn();
	});
}
