var enable_hoversingles = true;
$(document).ready(init_hoversingles);
function init_hoversingles() {

    $(function(){
       BT_setOptions({openWait:500, enableCache:false});
    })
	/*$("a").each(function(){
		if($(this).attr('href').indexOf('mtgsingle')==0){
			var t = $(this).attr('href').split('/');
			if(t[0] && t[1]){
				$(this).attr('id', 'link_'+t[1]);
				$.ajax({
					id: this.id,
					type: "POST",
					url: 'singleinfo/',
					data: "type=mtg&id="+t[1],
					beforeSend: fireloading,
					success: inputcallback
				 });
			}
		//	$(this).attr('title', $(this).attr('href'));
			//$(this).attr('title', 'DEMO <br/> Info about <strong style="font:10px Arial;">single</strong> will be here');
			//$(this).addClass("pretty").addClass("fancy");
		}
	});*/
}

/*function fireloading(e){
	console.log(this.id);
}
function inputcallback(data){
	$("#"+this.id).attr('title', data);
	$("#"+this.id).Tooltip({
		track: true,
		delay: 0,
		showURL: false,
		opacity: 1,
		fixPNG: true,
		showBody: " - ",
		extraClass: "pretty fancy",
		top: -15,
		left: 5
	});
}*/