<!--- Get Current year --->
now = new Date;

thisYr = now.getYear();

if (thisYr < 1900) {
thisYr = thisYr + 1900;
}	

<!--- Get Screen size --->
var myscreen_width = screen.width;

if(myscreen_width >= 1000) { 
var myFoto = "1"; 
} else { 
var myFoto = "0" ;
}

<!--- rollover action --->
if (document.images) { 
    <!--- home button --->
    aboutup       = new Image(); 
    aboutup.src   = "images/aboutOff.gif" ; 
    aboutdown     = new Image() ; 
    aboutdown.src = "images/aboutOn.gif" ; 
    <!--- event button --->
    eventup       = new Image(); 
    eventup.src   = "images/eventOff.gif" ; 
    eventdown     = new Image() ; 
    eventdown.src = "images/eventOn.gif" ; 
    <!--- Weddings button --->
    Weddingsup       = new Image(); 
    Weddingsup.src   = "images/WeddingsOff.gif" ; 
    Weddingsdown     = new Image() ; 
    Weddingsdown.src = "images/WeddingsOn.gif" ; 
    <!--- testimonials button --->
    testimonialsup       = new Image(); 
    testimonialsup.src   = "images/testimonialsOff.gif" ; 
    testimonialsdown     = new Image() ; 
    testimonialsdown.src = "images/testimonialsOn.gif" ; 
    <!--- Planning button --->
    Planningup       = new Image(); 
    Planningup.src   = "images/PlanningOff.gif" ; 
    Planningdown     = new Image() ; 
    Planningdown.src = "images/PlanningOn.gif" ; 
    <!--- contact button --->
    contactup       = new Image(); 
    contactup.src   = "images/contactOff.gif" ; 
    contactdown     = new Image() ; 
    contactdown.src = "images/contactOn.gif" ; 
} 

function buttonDown( buttonname ) 
{ 
    if (document.images) { 
      document[ buttonname ].src = eval( buttonname + "down.src" ); 
    } 
} 

function buttonUp ( buttonname ) 
{ 
    if (document.images) { 
      document[ buttonname ].src = eval( buttonname + "up.src" ); 
    } 
}