
/****************************************************************************

  This file is part of the GamesCast.tv Website

	GamesCast.tv coded by Steve "GreasedScotsman" Huff, 
	Copyright 2010 Steve Huff
	
	It is distributed under the terms of the 
	GNU General Public License
		
***************************************************************************/

function shortenPlayerSchedTitles() {

	$(".playerschedtitle").each(function(index) {
		var titleHTML = $(this).html();
		if (titleHTML.length > 45) { 
			//alert("event title length:"+titleHTML.length);
			titleHTML = titleHTML.substring(0,44)+"..."; 
			$(this).html(titleHTML);
		}
	});
}

// EOF
