$(document).ready(function(){
	var tspeed = 300;
	var changeLogo = function(idx){
		e = $('#client-logos li')[idx];
		idx = idx == $('#client-logos li').length -1 ? 0 : idx + 1;
		//current to end
		logos.push($('img', e).attr('src'));
		// add next
		$(e).append('<img class="staged" src="'+logos.shift()+'" alt=""/>');		
		$('.static', e).fadeOut(tspeed, function(){
			$(this).remove();
			$('.staged', e).fadeIn(tspeed, function(){
				$(this).attr('class', 'static');
				changeLogo(idx);
			});		
		});	
	}
	changeLogo(0);
});

$(document).ready(function(){
	$('#content p:first').prepend('<img id="post-it" src="'+HTPATH+'/style/img/post-it.png" alt="Show Quotes"/>');
	$('#post-it').click(showQuotes);
});
showQuotes = function(){
	$('#quotes').show();
};
hideQuotes = function(){
	$('#quotes').hide();
}

swfobject.embedSWF(
	HTPATH+'/style/swf/post-it.swf?q='+HTPATH+'/quotes.php', 'quotes', "624", "468", "9.0.0", HTPATH+'/js/swfobject/expressInstall.swf', false, {menu: "false", wmode: "transparent"}
);

