function randomPicture(){	if ($("#randomPicture").html() != null) {			$("#randomPicture").fadeOut(function(){			$(this).css("display","block").html("");			$(this).load("../index.php?module=page&action=ajaxRandomPicture", function(){
				$(this).css("display","none");
				$(this).fadeIn();
			});		});	}}	var timer=setInterval("randomPicture()", 5000);function switchTrack(trackId){	$('#audioPlayer').load("../index.php?module=audioplayer&action=ajaxTrackPlayer&trackId="+trackId);	}