$(function(){
	
	$("img[id*='-color-']").each(function(){
		if (this.id.indexOf("-color-chrome") == -1) {
			$(this).css("display", "none");
		}
	});
	
	BubbleTips.activateTipOn("img");
	BubbleTips.activateTipOn("div");
	
	$("div[class^='color-']").mouseover(function(){
		$("*[id^='" + $(this).attr("rel") + "-color-']").css("display", "none");
		$("#" + $(this).attr("rel") + "-" + $(this).attr("class")).css("display", "");
	});
});
