jQuery(function()
{
	jQuery(".PopUpBtn").click(function()
	{
		
		jQuery(".PopUpText").fadeOut(1000, function ()
		{  
			jQuery(this).remove();
		});

	});
	jQuery(".tblLogin input[type='submit']").val("");
	
	var source =  String.prototype.match.call(document.location, "[#?&]c_sourceid=([^&]+)");
	if (source!=null)
	{
		document.cookie = "c_sourceid=" + escape(source[1]) + "; path=/;";
	}
	
	
});

