$(document).ready(function()
{
	
	$('#downloadForm').hide();
	
	$('#clickDownloads').click(function()
	{
		$('#downloadForm').toggle('slow');
		return false;
	});
	$('#downloadFile').click(function()
	{
		var sUsr = $('#formUserName').val()
		var sPwd = $('#formPassword').val()
		
		//if(sUsr == "printer" && sPwd == "pagepack")
		if(sUsr == "printer" && sPwd == "p")
		{
			//alert("true")
			$('#downloadFile').replaceWith("<p><a href='../PrintManagementSoftware/DuratonePagePack.exe' class='pagepack'>DuratonePagePack.exe</a></p>");
		} else
		{
			alert("Incorrect username or password")
		}
		
		return false;
	});
	
});	

