$(function () {
	var tabContainers = $('div.tabModule > div');
	
	tabContainers.hide().filter(':first').show();
	
	$('div.tabModule table.tabNavigation a').click(function () {
															 
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('div.tabModule table.tabNavigation td').removeClass('selected');
		$(this).parent().addClass('selected');
		return false;
		
	}).filter(':first').click();
	
});

 
 jQuery(document).ready(function($) {
								 
	$('.sitemap_list_bly').children('li:last-child').css({"border":"none"});
	
	$('.clearlast_bly').children('li:last-child').children('.lineBreak').css({"background-image":"none"});
	
})