$(function()
{
	$("button, input[type=\"submit\"], input[type=\"button\"], .Btn").button().css({"font-size":"11px", "font-weight":"bold"});
	
	$(".ChatLink").popupWindow({
		height:400,
		width:600,
		centerScreen:1
	});
	$("#registerbtn").click(function(e)
	{
		e.preventDefault();
		window.location = "/Register";
	});

	
	$(".login.user").defaultText();

    $("#CustomerHistory").accordion({ collapsible: true, active:false, autoHeight: false });

	$("#reload").click(function()
	{
		$("#checkImg").removeAttr("src").attr("src", "/img.php?" + (new Date()).getTime());
	}).css("cursor", "pointer");
	
	$("#cspss").click(function()
	{
		var t = $("#csps").val();
		if(t != undefined)
		{
			$.get("/AJAX/CourseSmartProblem.php?t="+t, function(d)
			{
				if(d == 'true')
					window.reload();
				/*else
					$(".escoerror").remove();*/
			});
		}
	})
});
