
$(document).ready(function(){ 
	$('.imageSelector').tooltip(
	{	showURL: false,
		track:true,
		delay: 0,
		bodyHandler:function(){
		var id = "#" + $(this).attr("id");
		var color = $(this).attr("color");
		return "<div style='background-color:"+color+";padding: 5px;'>"+$(this).attr("xtitle")+"</div>";
	}});
});

