<!-- Ce script permet de se débrancher sur le site du Parisien en fonction du jour de la semaine //-->
function parisien()
{
today = new Date();
jour = new String();
if (today.getDay() == 1)
  {jour = "Mon"}
else
  {if (today.getDay() == 2)
    {jour = "Tue"}
  else
    {if (today.getDay() == 3)
      {jour = "Wed"}
    else
      {if (today.getDay() == 4)
 {jour = "Thu"}
      else
 {if (today.getDay() == 5)
   {jour = "Fri"}
 else
   {if (today.getDay() == 6)
  {jour = "Sat"}
			else
   		{if (today.getDay() == 0)
  	{jour = "Sat"}

}}}}}};
pagej = new String;
pagej = 'http://jdj.leparisien.com/jdj/' + jour + '/ESSONNE/rubESSONNE.htm';
window.location=pagej;
}