//for some reason, $(document).ready and $(window).ready fire too soon
	$("#productCategoryHomePageContainer > ul > li > ul").each(function(){
		var tempclass = this.className;
		
		
		$("." + tempclass).find("div.right").each(function(){
			
			//get the html from hidden div
			$(this).html($("#" + tempclass + "_" + $(this).attr("brand")).html());
		});
		
		
	});
