$(document).ready(function(){
	
		$('#coBodyRightColumnMiddle .newsSummary:last').css('border-bottom', '0');
		$('#coBodyRightColumnMiddle .newsSummary:last').css('padding-bottom', '0');
	
	
		$('#subsubNav li').each(function(){
			$(this).after('<li><span>|</span></li>');
		});
	
		$('#subsubNav li:last').html("");
	
	
	
		if($('#subsubNav li').length < 1)
		{
			$('#coSubSubNav').css('display', 'none');
			$('#coSubNav').css('height', '51px');
	 	}
	
	$('#coNavigationContainer #coSubNav .left ul li').each(function(){
		$(this).mouseover(function(){
			$(this).css('background', 'url(/images/Shearers/Corporate/SubNav_SPRITE.gif) 0 -56px repeat-x');
		});
		
		if($(this).hasClass('currentTab') == false)
		{
			$(this).mouseout(function(){
				$(this).css('background', 'none');	
			});
		}
	});
	
	
	var x = 3;
	$('.section').next(function(){  alert("SDSD");
		$('.coImage').eq(x).after("<div class='clear'></div>");
		x = x + 4;
		
	});
	
	
	
	var pc = 1;
	$('.coPPRightColumn').children(function(){
		$('.productCategory').eq(pc).after("<div class='clear'></div>");
		pc = pc + 2;
	});
	
	
	
	
	
	

	
});