// toggle recent max3 list up/down
function toggle_RecentList(id) {
	var el = $(id);
	if (el.className=='recentMax3_toggle_up') {
		el.className='recentMax3_toggle_down';
		Effect.BlindDown('recentTrackView', { duration: .25 });
	} else {
		el.className='recentMax3_toggle_up';
		Effect.BlindUp('recentTrackView', { duration: .25 });
	}
}

/*function openTip(t){ t.tip.hide(); t.tip.wrapper.blindDown({duration: 0.3}); }

document.observe('dom:loaded', function() {

	$('deTip').tip = new Tip('deTip', 'Earn free downloads and cash by creating Direct Links to artist\'s Max3s.', 
			{
			  title: 'DLink Earnings',
			  style:'max3Tip',     
    		  delay: 0,
			  hideAfter: 2,
			  offset: {x:5, y:5},
			  hideOn: 'mouseout',
			  hideOthers:true
			});
	$('deTip').observe('prototip:shown', function(){ openTip(this) });	

	$('dtTip').tip = new Tip('dtTip', 'Earn download tokens when someone buys a Max3 from one of your ELinks.', 
			{
			  title: 'Download Tokens',
			  style:'max3Tip',
			  effect: 'blind',
			  duration: 0.2,         
    		  delay: 0,
			  hideAfter: 2,
			  offset: {x:5, y:5},
			  hideOn: 'mouseout',
			  hideOthers:true

			});
	$('dtTip').observe('prototip:shown', function(){ openTip(this) });
	
	$('fpTip').tip = new Tip('fpTip', 'Earn \'Free with points\' tracks when people click on E-Links you\'ve sent out.', 
			{
			  title: 'Forward Points',
			  style:'max3Tip',
			  effect: 'blind',
			  duration: 0.2,         
    		  delay: 0,
			  hideAfter: 2,
			  offset: {x:5, y:5},
			  hideOn: 'mouseout',
			  hideOthers:true
			});
	$('fpTip').observe('prototip:shown', function(){ openTip(this) });

});*/
