jQuery(document).ready(function() {

    function changeSelection() {    	var hasChild = jQuery("ul.leftMenuOne li:has(a#active)");
		var actChild = hasChild.find("a#active");

		if(actChild.length > 0) {			actChild.css('font-weight','bold').removeAttr('id');
			actChild.end().find('a').eq(0).attr('id', 'active');
		}
	}

	changeSelection();

});