     
          $(document).ready(
				function(){
					$('#newsticker').innerfade({
						speed: 1000,
						timeout: 7000,
						type: 'sequence',
						containerheight: '34px'
					});
				});
				
// DATE FIXER ...courtesy http://addisonhalldesign.com/
$(function() {
	$('span.date').each(function() {
		var dateArray = $(this).text().split('-');
		var newDay = dateArray[0];
		var newMonth = dateArray[1];
		var newYear = dateArray[2];
		var newDateFormat = "" + newMonth + " " + newDay + ", " + newYear;
	$(this).html(newDateFormat);
	});
});

				
				
