$(document).ready(function(){

	// Makes the tangos specific Button
	$('.tnButton').each(function(){
		$(this).html("<div class='btnLeft'></div><div class='btnMiddle'><span>" + $(this).html() + "</span></div><div class='btnRight'></div>");
	});
	
	$('img').ifixpng();
	$('img').ifixashx();

	
	$('#tnNavContainer #tnSubNav .left ul li').each(function(){
		$(this).mouseover(function(){
			$(this).css('background', 'url(/images/Shearers/TangosMS/tnSubNav_SPRITE.gif) 0 -56px repeat-x');
		});
		
		if($(this).hasClass('currentTab') == false)
		{
			$(this).mouseout(function(){
				$(this).css('background', 'none');	
			});
		}
	});
	
	
	
	if($.browser.msie && $.browser.version < 7)
	{
		
		$('#tnLogoArea').html("");
		$('#tnLogoArea').html("<img width='983' height='139' src='/images/Shearers/TangosMS/LogoTop_BG.gif' />");
	}
});