var newsindex = 0;

$(document).ready(function(){
	$('.news-right-arrow > a').click(function(){
		var oldnewsindex = newsindex;
		newsindex++;
		
		if ($('p#news'+newsindex).length > 0) {//Next exists
			$('p#news'+oldnewsindex).hide('slow', function(){
				$('p#news'+newsindex).show('slow');
			});
		} else {
			newsindex = oldnewsindex;
		}
		
		return false;
	});

	$('.news-left-arrow > a').click(function(){
		var oldnewsindex = newsindex;
		newsindex--;
		
		if ($('p#news'+newsindex).length > 0) {//Previous exists
			$('p#news'+oldnewsindex).hide('slow', function(){
				$('p#news'+newsindex).show('slow');
			});
		} else {
			newsindex = oldnewsindex;
		}
		
		return false;
	});

});
