$(document).ready(function(){
var dateCommaSeperated=$("#lower_toolbar_date").text().split(" ");
var dateCommaSeperatedArray=dateCommaSeperated.toString().split(/[\s,]+/);
var dayName=dateCommaSeperatedArray[0];
var day=dateCommaSeperatedArray[1];
var month=dateCommaSeperatedArray[2];
var year=dateCommaSeperatedArray[3];
if(month=="Ιανουάριος"){month=month.replace("Ιανουάριος","Ιανουαρίου");}
if(month=="Φεβρουάριος"){month=month.replace("Φεβρουάριος","Φεβρουαρίου");}
if(month=="Μάρτιος"){month=month.replace("Μάρτιος","Μαρτίου");}
if(month=="Απρίλιος"){month=month.replace("Απρίλιος","Απριλίου");}
if(month=="Μάιος"){month=month.replace("Μάιος","Μαΐου");}
if(month=="Ιούνιος"){month=month.replace("Ιούνιος","Ιουνίου");}
if(month=="Ιούλιος"){month=month.replace("Ιούλιος","Ιουλίου");}
if(month=="Αύγουστος"){month=month.replace("Αύγουστος","Αυγούστου");}
if(month=="Σεπτέμβριος"){month=month.replace("Σεπτέμβριος","Σεπτέμβρίου");}
if(month=="Οκτώβριος"){month=month.replace("Οκτώβριος","Οκτωβρίου");}
if(month=="Νοέμβριος"){month=month.replace("Νοέμβριος","Νοεμβρίου");}
if(month=="Δεκέμβριος"){month=month.replace("Δεκέμβριος","Δεκεμβρίου");}
$("#lower_toolbar_date").text(dayName+","+day+" "+month+" "+year);
});


