
$(function()
{
if($(".titleReplace h2") != null){
	$(".titleReplace h2").each(function()
	{
		var reg = new RegExp("[^\\w]", "g");
		var str = $(this).text();

		/* some of the stupid handsets are added as 'nokia 7500 ' 
		 * (ie with a trailing space probably even one at the beginning ..)
		 * - this is the best way of undoing that*/
		str = str.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
		str = str.replace(reg, "_");

		if ($("link[@rel=stylesheet]").length > 0)
		{
			if ($.browser.msie)
			{
				$(this).parent().css("filter", "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/titles/generated/" + str +".png')");
			}
			else
			{
				$(this).parent().background("url(img/titles/generated/" + str + ".png) no-repeat");
			}
			
			$(this).css("display", "none");

			$(this).parent().height("30px");
		}
	});
}});
