var positive = true;

$(document).ready(function() {
	$('#musicstack ul li:not(:last)').each(function() {
		var randomNo = Math.floor(31*Math.random());
		
		if(!positive) {
			randomNo *= -1;
			positive = true;
		}
		else {
			positive = false;
		}
		$(this).css({'left':randomNo+'px'});
	});
	fadeIndex = $('#musicstack ul li').length;
	$('#musicstack ul li').each(function() {
		$(this).fadeIn(1000*fadeIndex);
		fadeIndex--;
	});
	
	$('#musicstack ul').hover(function() {
		$('#content').fadeTo('fast', 0.15);
		$(this).fadeTo('fast', 1);
	}, function() {
		$(this).fadeTo('fast', 0.7);
		$('#content').fadeTo('fast', 0.95);
	});
	
	$('#menu ul li').hover(function() {
		$(this).animate({'padding-right': '20px'}, 300);
	}, function() {
		$(this).animate({'padding-right': '0'}, 300);
	});
});
