// Script for navigation in IE6
$(document).ready(function(){
	var IE6 = (navigator.userAgent.indexOf("MSIE 6") >= 0) ? true: false;
	
	if (IE6) {
		$("#top_navigation li").hover(function(){
			$("div", $(this)).addClass("js");
			$(this).addClass("ie6hover");
		},function(){
			$(this).removeClass("ie6hover");
			$("div", $(this)).removeClass("js");
		});
	}
});

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}



