		var days = new Array(7);
		days[0] = 'Sunday';
		days[1] = 'Monday';
		days[2] = 'Tuesday';
		days[3] = 'Wednesday';
		days[4] = 'Thursday';
		days[5] = 'Friday';
		days[6] = 'Saturday';
		
        var currentDate = new Date();
		var dayofweek = currentDate.getDay();
		$("mydate1").update(days[dayofweek] + " - " + currentDate.getDate() + "/" + (currentDate.getMonth()+1));
		
		currentDate.setDate(currentDate.getDate() + 1);
		dayofweek = currentDate.getDay();
		$("mydate2").update(days[dayofweek] + " - " + currentDate.getDate() + "/" + (currentDate.getMonth()+1));
		
		currentDate.setDate(currentDate.getDate() + 1);
		dayofweek = currentDate.getDay();
		$("mydate3").update(days[dayofweek] + " - " + currentDate.getDate() + "/" + (currentDate.getMonth()+1));