// THE BINGARA ADVOCATE SCRIPTS

$(document).ready(function(){
	$('.newsTickerWrapper').prepend('<h1>News Highlights</h1>');
	$('.date').each(function(){
		var splitDate=$(this).text().split(' ');
		$(this).parent().children('.title').children().append(' ('+splitDate[0]+'-'+splitDate[1]+'-'+splitDate[2]+')');
		$(this).parent().children('.readmore').children().text('[ Read more... ]');
	});
	$('.newsDivArchiveTitle h1').text('News');
	$('#flashcontent899').parent().prepend('<h1>Photo Gallery</h1>');
	
	$('.newsTicker li').addClass('hide');
	$('.newsTicker li:nth-child(1), .newsTicker li:nth-child(2), .newsTicker li:nth-child(3), .newsTicker li:nth-child(4)').removeClass('hide');
	
});
