$(document).ready(function(){

	$("ul.zebra li:nth-child(odd)").addClass("line-odd");
	$("tbody.zebra tr:nth-child(even)").addClass("line-odd");

	$("a.tariff-action").click(function(event){
		return false;
	});

	$(".tariff-action").click(function () {
		$(".tariff-action-open").hide(300);
		$(this).next().show(500);
		$(this).next().addClass("tariff-action-open");
		$(".tariff-action").removeClass("active");
		$(this).addClass("active");
	});
	
	$('.service-cycle').cycle({
	    timeout: 7500, 
	      delay: 0 
	});

	getTwitters('tweet', {
		id: 'inkhost',
		count: 5,
		enableLinks: true,
		ignoreReplies: true,
		clearContents: true,		
		template: '<span class="twitterTime">%time%</span><span class="twitterText">%text%</span>'
	});



});