$(document).ready(function()
{

	// Makes the shapers specific Button
	$('.shpButton').each(function(){
		$(this).html("<div class='btnLeft'></div><div class='btnMiddle'><span>" + $(this).html() + "</span></div><div class='btnRight'></div>");
	});
	
	
	
	$('img').ifixashx();
	
	$('#shpNavContainer #shpSubNav .left ul li').each(function(){
		$(this).mouseover(function(){
			$(this).css('background', 'url(/images/Shearers/ShapersMS/shpSubNav_SPRITE.gif) 0 -56px repeat-x');
		});
		if($(this).hasClass('currentTab') == false)
		{
			$(this).mouseout(function(){
				$(this).css('background', 'none');	
			});
		}
	});
	

	
});