$(document).ready(function() {
	
	//lastData = 
	var _wowConfig = {
		charname:'vaire',
		realm: 'khaz-modan'
	};
	wT = new wowTag();
	wT.init(_wowConfig);
	
	doUpdate();
	var refreshId = setInterval(function(){
		doUpdate();
	}, 20000);
	
	$('#twitter-tip').tipsy();
	$('#facebook-tip').tipsy();
	$('#lastfm-tip').tipsy();
	$('#mail-tip').tipsy();
	

	
});
function doUpdate()
{
	$('div#lastfm').lastFM({
		username: 'seifertim',
		apikey: '51da9bdc56f8566e10dfb438f588d0c6',
		number: 5,
		artSize: 'small',
		template: 'lfm_temp',
		noart: '../images/noartwork.gif',
		onComplete: function(){
			$(".lfm_art").hover(function(e){
				$("#large").css("top",(e.pageY)+"px")
						.css("left",(e.pageX)+"px")
						.html("<img src="+ $(this).attr("title") +" alt='Large Image'/>")
						.fadeIn("fast");
			}, function(){
				$("#large").fadeOut("fast");
			});
			$('.bouncing').animate({
				height: '105%',
				width: '105%',
				angle: '10',
			}, 'fast');
		}
	});
}
