function daystillhips(){
var ONE_DAY = 1000 * 60 * 60 * 24;
var date = new Date(2007, 07, 01);
date = date;
var now = new Date();
now = now;
var daystogo = Math.abs(date - now);
daystogo = Math.floor(daystogo/ONE_DAY)+ 1;
var numbers;
if ( daystogo > 99 ) 
{
  number = 3;
}
else if ( daystogo > 9 )
{
number = 2;
}
else
 {
number = 1;
}

daystogo = daystogo.toString();
day1 = daystogo.charAt(0);
day2 = daystogo.charAt(1);
day3 = daystogo.charAt(2);

if( number == 3)
{
document.write("<img src=\"/prelogin/images/hip_num_"+ day1+ ".gif\" alt=\"" +day1+"\" /> <img src=\"/prelogin/images/hip_num_" +day2+ ".gif\" alt=\"" +day2+"\" /> <img src=\"/prelogin/images/hip_num_" +day3+ ".gif\" alt=\"" +day3+"\" />");
}
else if (number == 2)
{
document.write("<img src=\"/prelogin/images/hip_num_0.gif\" alt=\"0\" /> <img src=\"/prelogin/images/hip_num_"+ day1+ ".gif\" alt=\"" +day1+"\" /> <img src=\"/prelogin/images/hip_num_" +day2+ ".gif\" alt=\"" +day2+"\" />");
}
else
{
document.write("<img src=\"/prelogin/images/hip_num_0.gif\" alt=\"0\" /> <img src=\"/prelogin/images/hip_num_0.gif\" alt=\"0\" /> <img src=\"/prelogin/images/hip_num_"+ day1+ ".gif\" alt=\"" +day1+"\"  />");
}
}

