	function addLoadEvent(func) {
		if(document.addEventListener && navigator.userAgent.indexOf('Gecko/') != -1){
			document.addEventListener("DOMContentLoaded", function(){func()}, false);
		}
		else{
			var oldonload = window.onload;
			window.onload = function() {
				func();
				if(typeof oldonload == 'function') oldonload();
			}
		}
	}

addLoadEvent(function(){

	if(document.getElementById("breadCrumbs")){
		var topicPath = document.getElementById("breadCrumbs").getElementsByTagName("img");
		for(var i=0,t; t = topicPath[i]; i++){
			t.src = "/common/liquid/imgs/layout_parts/header/breadcrumbs_bg_rtl.gif";
		}
	}
});

