/* login */
$(function() {
	$( "#logindialog" ).dialog({
		autoOpen: false,
		width: 300
	});

	$('#loginbtn').click(function(){
		$('#logindialog').dialog('open');
		return false;
	});
});

/* GetCode */
$(function() {
	$( "#code" ).dialog({
		autoOpen: false,
		width: 400,
		buttons: {
			Ok: function() {
				$( this ).dialog( "close" );
			}
		}
	});

	$('#getcode').click(function(){
		$('#code').dialog('open');
		return false;
	});
});

$(function() {
	$('.argmore a, .argrel').append("<b class=\"thide\">^</b>");
});
$(document).ready(function(){
	$('#topmenu li').filter(function(index){
		return $('ul', this).length;
	}).addClass('sublink');
	$('#topmenu li.sublink, #topmenu li.active').append("<b class=\"thide\">&darr;</b>");
	$('#topmenu li').hover(
		function() {
			$(this).addClass("selected");
			$(this).find('ul').stop(true, true);
			$(this).find('ul').show('fast');
		},
		function() {
			$(this).find('ul').hide();
			$(this).removeClass("selected");
		}
	);
});
