	var	monthName;
	var	tmonth;
	var whiteSpaceSplit = " " || "  ";
	var fixTime = serverTime.replace("  "," ");
	var timeSplit = fixTime.split(" ");
	var weekDay = timeSplit[0].split(",");

	var calendarSplit = timeSplit[1].split("-");
	var clockSplit = timeSplit[2].split(":");
	var initMonth = calendarSplit[1]; 
	
	if (initMonth == "Jan") {
		tmonth = 1;
		monthName = "January";
	}
	if (initMonth == "Feb") {
		tmonth = 2;
		monthName = "February";
	}
	if (initMonth == "Mar") {
		tmonth = 3;
		monthName = "March";
	}
	if (initMonth == "Apr") {
		tmonth = 4;
		monthName = "April";
	}
	if (initMonth == "May") {
		tmonth = 5;
		monthName = "May";
	}
	if (initMonth == "Jun") {
		tmonth = 6;
		monthName = "June";
	}
	if (initMonth == "Jul") {
		tmonth = 7;
		monthName = "July";
	}
	if (initMonth == "Aug") {
		tmonth = 8;
		monthName = "August";
	}
	if (initMonth == "Sep") {
		tmonth = 9;
		monthName = "September";
	}
	if (initMonth == "Oct") {
		tmonth = 10;
		monthName = "October";
	}
	if (initMonth == "Nov") {
		tmonth = 11;
		monthName = "November";
	}
	if (initMonth == "Dec") {
		tmonth = 12;
		monthName = "December";
	}
	
	//seperate to smaller date info
	var tday = weekDay[0];
	var tdate = calendarSplit[0];
	if (calendarSplit[2].indexOf(20)>-1){
		var tyear = calendarSplit[2];
	} else {
		var tyear = '20'+calendarSplit[2];
	}
	
	//seperated to final bits
	var thour = clockSplit[0];
	var tminutes = clockSplit[1];
	
//	10/27/2009-11:44:38
	var countdownTime = tmonth + "/" + tdate + "/" + tyear + "-" + timeSplit[2];