﻿function ie6_common(){
	$('div#main ul li:first-child').addClass("ul-descendant-li-first-child");
	$('div#main li p:first-child').addClass("li-descendant-p-first-child");
	$('div#main li dl:first-child').addClass("li-descendant-dl-first-child");
	$('div#main li table:first-child').addClass("li-descendant-table-first-child");
	$('div#main dd p:first-child').addClass("dd-descendant-p-first-child");
	$('div#main dd ul:first-child').addClass("dd-descendant-ul-first-child");
	$('div#main dd ol:first-child').addClass("dd-descendant-ol-first-child");
	$('div#main dd dl:first-child').addClass("dd-descendant-dl-first-child");
	$('div#main dd table:first-child').addClass("dd-descendant-table-first-child");
	$('div#main td p:first-child').addClass("td-descendant-p-first-child");
	$('div#main td ul:first-child').addClass("td-descendant-ul-first-child");
	$('div#main td dl:first-child').addClass("td-descendant-dl-first-child");
	$('div#main ul.linkList > li').addClass("ul_linkList-child-li");
	$('div#main ul.separate > li').addClass("ul_separate-child-li");
	$('div#main div[class*="headingLevel"]:first-child').addClass("div_headingLevel-first-child");
	$('div#main div[class*="headingImageLevel"]:first-child').addClass("headingImageLevel-first-child");
	$('div#main div[class*="headingLevel"] + div[class*="headingLevel"]').addClass("div_headingLevel-sibling-div_headingLevel");
	$('div#main div[class*="headingImageLevel"] + div[class*="headingImageLevel"]').addClass("div_headingImageLevel-sibling-div_headingImageLevel");
	$('div#main div.boxText > :first-child').addClass("div_boxText-child-universal-first-child");
	$('div#main ul.newsRelease > li').addClass("ul_newsRelease-child-li");
	$('div#main ul.newsRelease > li > dl.index dt').addClass("ul_newsRelease-child-li-child-dl_index-dt");
	
	$('div#header div.content div.section ul li:first-child').addClass("div_header-div_section-ul-li-first-child");
	$('div#footer div.content div.section ul li:first-child').addClass("div_footer-div_section-ul-li-first-child");
	$('#main div.composition div[class*="headingLevel"]:first-child').addClass("div_composition-div_headingLevel-first-child");
	$('#main div.borderBox div[class*="headingLevel"]:first-child').addClass("div_borderBox-headingLevel-first-child");
	$('#main div.fillBox div.headingLevel4:first-child').addClass("div_fillBox-headingLevel4-first-child");
	$('#main div.emphasisBox div.headingLevel4:first-child').addClass("div_emphasisBox-headingLevel4-first-child");
	$('#main div#topicPath + div[class*="headingLevel"]').addClass("div_topicPath-sibling-div_headingLevel");
	$('#main div#topicPath + div[class*="headingImageLevel"]').addClass("div_topicPath-sibling-div_headingImageLevel");
}

