

$(function () {
	setInterval(function () {
		var firstLi = $('#marquee ul li:first');
		$('#marquee ul').prepend(firstLi.next());
		$('#marquee ul').append(firstLi);
	}, 5000)
	$('#scrollIndex').css('position', 'relative');//¹ö¶¯
	$('#scrollIndex').scrollFollow();
})


function detail(userId, username) {
	moneyTable(userId);
	
	if ($('#detailModal').length > 0) {
		var detailModal = $('#detailModal');
	} else {
		var detailModal = $('<div id="detailModal"></div>');
		$('body').append(detailModal);
	}
	
	detailModal.dialog({
		bgiframe: true,
		minHeight: 10,
		resizable: false,
		title: username,
		modal: true,
		width: 1000,
		height: 562,
		close: function () {
			$(this).dialog('destroy');
		}
	})


}
 

