function getYellowStyle_old () {
	if (document.getElementById && document.getElementsByTagName) {  
		var allA = document.getElementsByTagName('a');
		//if (!allA) { return; }
		if(allA) {
			for (var i = 0; i < allA.length; i++) {
				if (allA[i].className.match(/[\w\s ]*yellow[\w\s ]*/)) {
					parent = allA[i].parentNode.parentNode;
					parent.style.backgroundImage = "url(templates/cooking_spirit_accueil/images/bg_menu_premium.png)";
					parent.style.backgroundRepeat = "no-repeat";
				}
			}
		}
		var allSpan = document.getElementsByTagName('span');
		if (allSpan) {
			for (var i = 0; i < allSpan.length; i++) {
				if (allSpan[i].className.match(/[\w\s ]*menu_wgid[\w\s ]*/)) {
					parent = allSpan[i].parentNode.parentNode;
					parent.style.backgroundImage = "url(templates/cooking_spirit_accueil/images/bg_menu_premium.png)";
					parent.style.backgroundRepeat = "no-repeat";
				}
			}
		}
	}
}

function getYellowStyle () {
	if (document.getElementById && document.getElementsByTagName) {  
		var allA = document.getElementsByTagName('a');
		//if (!allA) { return; }
		if(allA) {
			for (var i = 0; i < allA.length; i++) {
				//~ var posStart = allA[i].href.indexOf('option=');
				var posStart = allA[i].href.indexOf('task=');
				if(posStart > 0) {
					var parent = allA[i].parentNode.parentNode;
					parent.style.backgroundImage = "url(templates/cooking_spirit_accueil/images/bg_menu_premium.png)";
					parent.style.backgroundRepeat = "no-repeat";
				}
			}
		}
		var allSpan = document.getElementsByTagName('span');
		if (allSpan) {
			for (var i = 0; i < allSpan.length; i++) {
				if (allSpan[i].className.match(/[\w\s ]*menu_wgid[\w\s ]*/)) {
					var parent = allSpan[i].parentNode.parentNode;
					parent.style.backgroundImage = "url(templates/cooking_spirit_accueil/images/bg_menu_premium.png)";
					parent.style.backgroundRepeat = "no-repeat";
				}
			}
		}
	}
}

getYellowStyle();