function currentDate() {
	var now = new Date();
	var day = now.getDay();
	var month = now.getMonth()+1;
	var weekDays = new Array("Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο");
	var theDate = weekDays[day]+", "+now.getDate()+"/"+month+"/"+now.getYear();
	return theDate;
}

function on(what,val,tp) {
	var itm = document.getElementById(what + val);
	itm.style.backgroundColor="#333366";
	itm.style.color="e9eefa";
	window.status=tp;
}

function off(what,val,act) {
	var itm = document.getElementById(what + val);
	if (act==1){
		itm.style.backgroundColor="#333399";
		itm.style.color="black";
	}else{
		itm.style.backgroundColor="#e9eefa";
	}
	itm.style.color="black";
	window.status='';
}

function go(where) {
	document.location='http://www.patris.gr'+ where;
}

