$(function(){
	$(".gallery").cycle({
		fx	:'fade',
		speed	: 1000,
		next	:'.next', 
	        prev	:'.previous',
		timeout	:3000
	});
	$(".pause").toggle(
		function() {
			$(".gallery").cycle('pause');
			$(this).toggleClass("play");
		},function() {
			$(".gallery").cycle('resume');
			$(this).toggleClass("play");
		}
	);

   $(".txt-container tbody tr:nth-child(odd)").addClass("odd");

});

