 function findPosX(obj)
  {
    var curleft = 0;
    if(obj.offsetParent)
        while(1)
        {
          curleft += obj.offsetLeft;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.x)
        curleft += obj.x;
    return curleft;
  }

  function findPosY(obj)
  {
    var curtop = 0;
    if(obj.offsetParent)
        while(1)
        {
          curtop += obj.offsetTop;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.y)
        curtop += obj.y;
    return curtop;
  }
  
function image_one_hover()
 {
 var image_one = window.document.getElementById("one");
 var div_one   = window.document.getElementById("divone");
 var car_pic = window.document.getElementById("carimage");
 
 car_pic.src ="images/fj_01_over.jpg";
 
 var screen_top     = window.pageYOffset;
 var screen_height  = Math.round(screen.availHeight / 2);
 var image_position = screen_top + screen_height - 222;

 x = findPosX(image_one) + 152;
 y = findPosY(image_one) + 95;
  
 div_one.style.position = "absolute";
 div_one.style.top = y +"px";
 div_one.style.left = x+"px";
 div_one.style.visibility = "visible";
 div_one.style.height = '245px';
 div_one.style.width  = '370px';
 div_one.style.border  = '8px solid white';
 div_one.style.borderTop  = '10px solid white';
 div_one.style.borderBottom  = '10px solid white';
 div_one.style.overflow  = 'visible';


 var div_two   = window.document.getElementById("divtwo");
 div_two.style.visibility = "hidden";
 }
 
 function image_one_hide()
  {
  var div_one   = window.document.getElementById("divone");
 div_one.style.visibility = "hidden";
  }
   
   
 
 function image_two_hover()
 {
 var image_one = window.document.getElementById("one");
 var div_two   = window.document.getElementById("divtwo");
 
 var car_pic = window.document.getElementById("carimage1");

 var screen_top     = window.pageYOffset;
 var screen_height  = Math.round(screen.availHeight / 2);
 var image_position = screen_top + screen_height - 208;
 
 car_pic.src ="images/fj_02.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_two.style.position = "absolute";
 div_two.style.top = y + "px";
 div_two.style.left = x+"px";
 div_two.style.visibility = "visible";
 div_two.style.height = '176px';
 div_two.style.width  = '288px';
 div_two.style.border  = '8px solid white';
 div_two.style.borderTop  = '10px solid white';
 div_two.style.borderBottom  = '10px solid white';
 div_two.style.overflow  = 'visible';
 
 var div_one   = window.document.getElementById("divone");
 div_one.style.visibility = "hidden";
 
 }
 
function image_two_hide()
  {
   var div_two   = window.document.getElementById("divtwo");
 div_two.style.visibility = "hidden";
  }
  
 function image_three_hover()
 {
 var image_one = window.document.getElementById("one");
 var div_three   = window.document.getElementById("divthree");
 
 var car_pic = window.document.getElementById("carimage2");
 
 car_pic.src ="images/fj_03_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_three.style.position = "absolute";
 div_three.style.top = y+"px";
 div_three.style.left = x+"px";
 div_three.style.visibility = "visible";
 div_three.style.height = '231px';
 div_three.style.width  = '370px';
 div_three.style.border  = '8px solid white';
 div_three.style.borderTop  = '10px solid white';
 div_three.style.borderBottom  = '10px solid white';
 div_three.style.overflow  = 'visible';
 var div_one   = window.document.getElementById("divone");
 div_one.style.visibility = "hidden";
 
 }
 
function image_three_hide()
  {
   var div_three   = window.document.getElementById("divthree");
 div_three.style.visibility = "hidden";
  }
  
 function image_four_hover()
 {
 var image_one = window.document.getElementById("one");
 var div_four   = window.document.getElementById("divfour");
 
 var car_pic = window.document.getElementById("carimage3");
 
 car_pic.src ="images/fj_04_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_four.style.position = "absolute";
 div_four.style.top = y+"px";
 div_four.style.left = x+"px";
 div_four.style.visibility = "visible";
 div_four.style.height = '247px';
 div_four.style.width  = '370px';
 div_four.style.border  = '8px solid white';
 div_four.style.borderTop  = '10px solid white';
 div_four.style.borderBottom  = '10px solid white';
 div_four.style.overflow  = 'visible';
 
 var div_one   = window.document.getElementById("divone");
 div_one.style.visibility = "hidden";
 
 }
 
function image_four_hide()
  {
   var div_four   = window.document.getElementById("divfour");
 div_four.style.visibility = "hidden";
  }
  
 function image_five_hover()
 {
 var image_one = window.document.getElementById("five");
 var div_five   = window.document.getElementById("divfive");
 
 var car_pic = window.document.getElementById("carimage4");
 
 car_pic.src ="images/fj_05_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_five.style.position = "absolute";
 div_five.style.top = y+"px";
 div_five.style.left = x+"px";
 div_five.style.visibility = "visible";
 div_five.style.height = '233px';
 div_five.style.width  = '350px';
 div_five.style.border  = '8px solid white';
 div_five.style.borderTop  = '10px solid white';
 div_five.style.borderBottom  = '10px solid white';
 div_five.style.overflow  = 'visible';
 
 
 }
 
function image_five_hide()
  {
   var div_four   = window.document.getElementById("divfive");
 div_four.style.visibility = "hidden";
  }
  
  
 function image_six_hover()
 {
 var image_one = window.document.getElementById("five");
 var div_six   = window.document.getElementById("divsix");
 
  var car_pic = window.document.getElementById("carimage5");
 
 car_pic.src ="images/fj_06_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_six.style.position = "absolute";
 div_six.style.top = y+"px";
 div_six.style.left = x+"px";
 div_six.style.visibility = "visible";
 div_six.style.height = '233px';
 div_six.style.width  = '350px';
 div_six.style.border  = '8px solid white';
 div_six.style.borderTop  = '10px solid white';
 div_six.style.borderBottom  = '10px solid white';
 div_six.style.overflow  = 'visible';
 
 
 }
 
function image_six_hide()
  {
   var div_four   = window.document.getElementById("divsix");
 div_four.style.visibility = "hidden";
  }
  
 function image_seven_hover()
 {
 var image_one = window.document.getElementById("five");
 var div_seven   = window.document.getElementById("divseven");
 
 var car_pic = window.document.getElementById("carimage6");
 
 car_pic.src ="images/fj_07_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_seven.style.position = "absolute";
 div_seven.style.top = y+"px";
 div_seven.style.left = x+"px";
 div_seven.style.visibility = "visible";
 div_seven.style.height = '198px';
 div_seven.style.width  = '350px';
 div_seven.style.border  = '8px solid white';
 div_seven.style.borderTop  = '10px solid white';
 div_seven.style.borderBottom  = '10px solid white';
 div_seven.style.overflow  = 'visible';
 
 
 }
 
function image_seven_hide()
  {
   var div_four   = window.document.getElementById("divseven");
 div_four.style.visibility = "hidden";
  }
  
 function image_eight_hover()
 {
 var image_one = window.document.getElementById("five");
 var div_eight   = window.document.getElementById("diveight");
 
  var car_pic = window.document.getElementById("carimage7");
 
 car_pic.src ="images/fj_08_over.gif";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_eight.style.position = "absolute";
 div_eight.style.top = y+"px";
 div_eight.style.left = x+"px";
 div_eight.style.visibility = "visible";
 div_eight.style.height = '273px';
 div_eight.style.width  = '375px';
 div_eight.style.border  = '8px solid white';
 div_eight.style.borderTop  = '10px solid white';
 div_eight.style.borderBottom  = '10px solid white';
 div_eight.style.overflow  = 'visible';
 
 
 }
 
function image_eight_hide()
  {
   var div_four   = window.document.getElementById("diveight");
 div_four.style.visibility = "hidden";
  }
  
 function image_nine_hover()
 {
 var image_one = window.document.getElementById("nine");
 var div_nine   = window.document.getElementById("divnine");
 
 var car_pic = window.document.getElementById("carimage8");
 
 car_pic.src ="images/fj_09_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_nine.style.position = "absolute";
 div_nine.style.top = y+"px";
 div_nine.style.left = x+"px";
 div_nine.style.visibility = "visible";
 div_nine.style.height = '233px';
 div_nine.style.width  = '350px';
 div_nine.style.border  = '8px solid white';
 div_nine.style.borderTop  = '10px solid white';
 div_nine.style.borderBottom  = '10px solid white';
 div_nine.style.overflow  = 'visible';
 
 
 }
 
function image_nine_hide()
  {
   var div_four   = window.document.getElementById("divnine");
 div_four.style.visibility = "hidden";
  }
  
 function image_ten_hover()
 {
 var image_one = window.document.getElementById("nine");
 var div_ten   = window.document.getElementById("divten");
 
 var car_pic = window.document.getElementById("carimage9");
 
 car_pic.src ="images/fj_10_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_ten.style.position = "absolute";
 div_ten.style.top = y+"px";
 div_ten.style.left = x+"px";
 div_ten.style.visibility = "visible";
 div_ten.style.height = '263px';
 div_ten.style.width  = '350px';
 div_ten.style.border  = '8px solid white';
 div_ten.style.borderTop  = '10px solid white';
 div_ten.style.borderBottom  = '10px solid white';
 div_ten.style.overflow  = 'visible';
 
 
 }
 
function image_ten_hide()
  {
   var div_four   = window.document.getElementById("divten");
 div_four.style.visibility = "hidden";
  }
  
 function image_eleven_hover()
 {
 var image_one = window.document.getElementById("nine");
 var div_eleven   = window.document.getElementById("diveleven");
 
 var car_pic = window.document.getElementById("carimage10");
 
 car_pic.src ="images/fj_11_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_eleven.style.position = "absolute";
 div_eleven.style.top = y+"px";
 div_eleven.style.left = x+"px";
 div_eleven.style.visibility = "visible";
 div_eleven.style.height = '371px';
 div_eleven.style.width  = '350px';
 div_eleven.style.border  = '8px solid white';
 div_eleven.style.borderTop  = '10px solid white';
 div_eleven.style.borderBottom  = '10px solid white';
 div_eleven.style.overflow  = 'visible';
 
 
 }
 
function image_eleven_hide()
  {
   var div_four   = window.document.getElementById("diveleven");
 div_four.style.visibility = "hidden";
  }
  
function image_twelve_hover()
 {
 var image_one = window.document.getElementById("nine");
 var div_twelve   = window.document.getElementById("divtwelve");
 
 var car_pic = window.document.getElementById("carimage11");
 
 car_pic.src ="images/fj_12_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twelve.style.position = "absolute";
 div_twelve.style.top = y+"px";
 div_twelve.style.left = x+"px";
 div_twelve.style.visibility = "visible";
 div_twelve.style.height = '250px';
 div_twelve.style.width  = '350px';
 div_twelve.style.border  = '8px solid white';
 div_twelve.style.borderTop  = '10px solid white';
 div_twelve.style.borderBottom  = '10px solid white';
 div_twelve.style.overflow  = 'visible';
 
 
 }
 
function image_twelve_hide()
  {
   var div_four   = window.document.getElementById("divtwelve");
 div_four.style.visibility = "hidden";
  }
  
function image_therteen_hover()
 {
 var image_one = window.document.getElementById("therteen");
 var div_therteen   = window.document.getElementById("divtherteen");
 

 
 var car_pic = window.document.getElementById("carimage12");
 
 car_pic.src ="images/fj_13_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_therteen.style.position = "absolute";
 div_therteen.style.top = y+"px";
 div_therteen.style.left = x+"px";
 div_therteen.style.visibility = "visible";
 div_therteen.style.height = '234px';
 div_therteen.style.width  = '350px';
 div_therteen.style.border  = '8px solid white';
 div_therteen.style.borderTop  = '10px solid white';
 div_therteen.style.borderBottom  = '10px solid white';
 div_therteen.style.overflow  = 'visible';
 
 
 }
 
function image_therteen_hide()
  {
   var div_four   = window.document.getElementById("divtherteen");
 div_four.style.visibility = "hidden";
  }
  
function image_fourteen_hover()
 {
 var image_one = window.document.getElementById("therteen");
 var div_fourteen   = window.document.getElementById("divfourteen");
 
 var car_pic = window.document.getElementById("carimage13");
 
 car_pic.src ="images/fj_14_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_fourteen.style.position = "absolute";
 div_fourteen.style.top = y+"px";
 div_fourteen.style.left = x+"px";
 div_fourteen.style.visibility = "visible";
 div_fourteen.style.height = '219px';
 div_fourteen.style.width  = '350px';
 div_fourteen.style.border  = '8px solid white';
 div_fourteen.style.borderTop  = '10px solid white';
 div_fourteen.style.borderBottom  = '10px solid white';
 div_fourteen.style.overflow  = 'visible';
 
 
 }
 
function image_fourteen_hide()
  {
   var div_four   = window.document.getElementById("divfourteen");
 div_four.style.visibility = "hidden";
  }
  
function image_fifthteen_hover()
 {
 var image_one = window.document.getElementById("therteen");
 var div_fifthteen   = window.document.getElementById("divfifthteen");
 
  var car_pic = window.document.getElementById("carimage14");
 
 car_pic.src ="images/fj_15_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_fifthteen.style.position = "absolute";
 div_fifthteen.style.top = y+"px";
 div_fifthteen.style.left = x+"px";
 div_fifthteen.style.visibility = "visible";
 div_fifthteen.style.height = '219px';
 div_fifthteen.style.width  = '350px';
 div_fifthteen.style.border  = '8px solid white';
 div_fifthteen.style.borderTop  = '10px solid white';
 div_fifthteen.style.borderBottom  = '10px solid white';
 div_fifthteen.style.overflow  = 'visible';
 
 
 }
 
function image_fifthteen_hide()
  {
   var div_four   = window.document.getElementById("divfifthteen");
 div_four.style.visibility = "hidden";
  }
  
function image_sixteen_hover()
 {
 var image_one = window.document.getElementById("therteen");
 var div_sixteen   = window.document.getElementById("divsixteen");
 
 var car_pic = window.document.getElementById("carimage15");
 
 car_pic.src ="images/fj_16_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_sixteen.style.position = "absolute";
 div_sixteen.style.top = y+"px";
 div_sixteen.style.left = x+"px";
 div_sixteen.style.visibility = "visible";
 div_sixteen.style.height = '264px';
 div_sixteen.style.width  = '350px';
 div_sixteen.style.border  = '8px solid white';
 div_sixteen.style.borderTop  = '10px solid white';
 div_sixteen.style.borderBottom  = '10px solid white';
 div_sixteen.style.overflow  = 'visible';
 
 
 }
 
function image_sixteen_hide()
  {
   var div_four   = window.document.getElementById("divsixteen");
 div_four.style.visibility = "hidden";
  }
  
function image_seventeen_hover()
 {
 var image_one = window.document.getElementById("seventeen");
 var div_seventeen   = window.document.getElementById("divseventeen");
 
 var car_pic = window.document.getElementById("carimage16");
 
 car_pic.src ="images/fj_17_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_seventeen.style.position = "absolute";
 div_seventeen.style.top = y+"px";
 div_seventeen.style.left = x+"px";
 div_seventeen.style.visibility = "visible";
 div_seventeen.style.height = '263px';
 div_seventeen.style.width  = '350px';
 div_seventeen.style.border  = '8px solid white';
 div_seventeen.style.borderTop  = '10px solid white';
 div_seventeen.style.borderBottom  = '10px solid white';
 div_seventeen.style.overflow  = 'visible';
 
 
 }
 
function image_seventeen_hide()
  {
   var div_four   = window.document.getElementById("divseventeen");
 div_four.style.visibility = "hidden";
  }
  
function image_eighteen_hover()
 {
 var image_one = window.document.getElementById("seventeen");
 var div_eighteen   = window.document.getElementById("diveighteen");
 
 var car_pic = window.document.getElementById("carimage17");
 car_pic.src ="images/fj_18_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_eighteen.style.position = "absolute";
 div_eighteen.style.top = y+"px";
 div_eighteen.style.left = x+"px";
 div_eighteen.style.visibility = "visible";
 div_eighteen.style.height = '255px';
 div_eighteen.style.width  = '350px';
 div_eighteen.style.border  = '8px solid white';
 div_eighteen.style.borderTop  = '10px solid white';
 div_eighteen.style.borderBottom  = '10px solid white';
 div_eighteen.style.overflow  = 'visible';
 
 
 }
 
function image_eighteen_hide()
  {
   var div_four   = window.document.getElementById("diveighteen");
 div_four.style.visibility = "hidden";
  }
  
function image_nineteen_hover()
 {
 var image_one = window.document.getElementById("seventeen");
 var div_nineteen   = window.document.getElementById("divnineteen");
 
 var car_pic = window.document.getElementById("carimage18");
 car_pic.src ="images/fj_19_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_nineteen.style.position = "absolute";
 div_nineteen.style.top = y+"px";
 div_nineteen.style.left = x+"px";
 div_nineteen.style.visibility = "visible";
 div_nineteen.style.height = '263px';
 div_nineteen.style.width  = '350px';
 div_nineteen.style.border  = '8px solid white';
 div_nineteen.style.borderTop  = '10px solid white';
 div_nineteen.style.borderBottom  = '10px solid white';
 div_nineteen.style.overflow  = 'visible';
 
 }
 
function image_nineteen_hide()
  {
   var div_four   = window.document.getElementById("divnineteen");
 div_four.style.visibility = "hidden";
  }
  
function image_twenty_hover()
 {
 var image_one = window.document.getElementById("seventeen");
 var div_twenty  = window.document.getElementById("divtwenty");
 
 var car_pic = window.document.getElementById("carimage19");
 car_pic.src ="images/fj_26_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twenty.style.position = "absolute";
 div_twenty.style.top = y+"px";
 div_twenty.style.left = x+"px";
 div_twenty.style.visibility = "visible";
 div_twenty.style.height = '236px';
 div_twenty.style.width  = '314px';
 div_twenty.style.border  = '8px solid white';
 div_twenty.style.borderTop  = '10px solid white';
 div_twenty.style.borderBottom  = '10px solid white';
 div_twenty.style.overflow  = 'visible';
 
 }
 
function image_twenty_hide()
  {
   var div_four   = window.document.getElementById("divtwenty");
 div_four.style.visibility = "hidden";
  }
  
function image_twentyone_hover()
 {
 var image_one = window.document.getElementById("twentyone");
 var div_twentyone = window.document.getElementById("divtwentyone");
 
 var car_pic = window.document.getElementById("carimage20");
 car_pic.src ="images/fj_22_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyone.style.position = "absolute";
 div_twentyone.style.top = y+"px";
 div_twentyone.style.left = x+"px";
 div_twentyone.style.visibility = "visible";
 div_twentyone.style.height = '269px';
 div_twentyone.style.width  = '350px';
 div_twentyone.style.border  = '8px solid white';
 div_twentyone.style.borderTop  = '10px solid white';
 div_twentyone.style.borderBottom  = '10px solid white';
 div_twentyone.style.overflow  = 'visible';

 }
 
function image_twentyone_hide()
  {
   var div_four   = window.document.getElementById("divtwentyone");
 div_four.style.visibility = "hidden";
  }
  
function image_twentytwo_hover()
 {
 var image_one = window.document.getElementById("twentyone");
 var div_twentytwo = window.document.getElementById("divtwentytwo");
 
 var car_pic = window.document.getElementById("carimage21");
 car_pic.src ="images/fj_21_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentytwo.style.position = "absolute";
 div_twentytwo.style.top = y+"px";
 div_twentytwo.style.left = x+"px";
 div_twentytwo.style.visibility = "visible";
 div_twentytwo.style.height = '263px';
 div_twentytwo.style.width  = '350px';
 div_twentytwo.style.border  = '8px solid white';
 div_twentytwo.style.borderTop  = '10px solid white';
 div_twentytwo.style.borderBottom  = '10px solid white';
 div_twentytwo.style.overflow  = 'visible';
 
 
 }
 
function image_twentytwo_hide()
  {
   var div_four   = window.document.getElementById("divtwentytwo");
 div_four.style.visibility = "hidden";
  }
  
function image_twentythree_hover()
 {
 var image_one = window.document.getElementById("twentyone");
 var div_twentythree = window.document.getElementById("divtwentythree");
 
  var car_pic = window.document.getElementById("carimage22");
 car_pic.src ="images/fj_23_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentythree.style.position = "absolute";
 div_twentythree.style.top = y+"px";
 div_twentythree.style.left = x+"px";
 div_twentythree.style.visibility = "visible";
 div_twentythree.style.height = '263px';
 div_twentythree.style.width  = '350px';
 div_twentythree.style.border  = '8px solid white';
 div_twentythree.style.borderTop  = '10px solid white';
 div_twentythree.style.borderBottom  = '10px solid white';
 div_twentythree.style.overflow  = 'visible';
 
 }
 
function image_twentythree_hide()
  {
   var div_four   = window.document.getElementById("divtwentythree");
 div_four.style.visibility = "hidden";
  }
  
function image_twentyfour_hover()
 {
 var image_one = window.document.getElementById("twentyone");
 var div_twentyfour = window.document.getElementById("divtwentyfour");

 var car_pic = window.document.getElementById("carimage23");
 car_pic.src ="images/fj_24_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyfour.style.position = "absolute";
 div_twentyfour.style.top = y+"px";
 div_twentyfour.style.left = x+"px";
 div_twentyfour.style.visibility = "visible";
 div_twentyfour.style.height = '235px';
 div_twentyfour.style.width  = '350px';
 div_twentyfour.style.border  = '8px solid white';
 div_twentyfour.style.borderTop  = '10px solid white';
 div_twentyfour.style.borderBottom  = '10px solid white';
 div_twentyfour.style.overflow  = 'visible';
 
 
 }
 
function image_twentyfour_hide()
  {
   var div_four   = window.document.getElementById("divtwentyfour");
 div_four.style.visibility = "hidden";
  }
  
function image_twentyfive_hover()
 {
 var image_one = window.document.getElementById("twentyfive");
 var div_twentyfive = window.document.getElementById("divtwentyfive");

var car_pic = window.document.getElementById("carimage24");
 car_pic.src ="images/fj_25_over.bmp";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyfive.style.position = "absolute";
 div_twentyfive.style.top = y+"px";
 div_twentyfive.style.left = x+"px";
 div_twentyfive.style.visibility = "visible";
 div_twentyfive.style.height = '233px';
 div_twentyfive.style.width  = '350px';
 div_twentyfive.style.border  = '8px solid white';
 div_twentyfive.style.borderTop  = '10px solid white';
 div_twentyfive.style.borderBottom  = '10px solid white';
 div_twentyfive.style.overflow  = 'visible';
 
 
 }
 
function image_twentyfive_hide()
  {
   var div_four   = window.document.getElementById("divtwentyfive");
 div_four.style.visibility = "hidden";
  }
  
function image_twentysix_hover()
 {
 var image_one = window.document.getElementById("twentyfive");
 var div_twentysix = window.document.getElementById("divtwentysix");

var car_pic = window.document.getElementById("carimage25");
 car_pic.src ="images/fj_27_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentysix.style.position = "absolute";
 div_twentysix.style.top = y+"px";
 div_twentysix.style.left = x+"px";
 div_twentysix.style.visibility = "visible";
 div_twentysix.style.height = '263px';
 div_twentysix.style.width  = '350px';
 div_twentysix.style.border  = '8px solid white';
 div_twentysix.style.borderTop  = '10px solid white';
 div_twentysix.style.borderBottom  = '10px solid white';
 div_twentysix.style.overflow  = 'visible';
 
 
 }
 
function image_twentysix_hide()
  {
   var div_four   = window.document.getElementById("divtwentysix");
 div_four.style.visibility = "hidden";
  }
  
function image_twentyseven_hover()
 {
 var image_one = window.document.getElementById("twentyfive");
 var div_twentyseven = window.document.getElementById("divtwentyseven");

var car_pic = window.document.getElementById("carimage26");
 car_pic.src ="images/fj_20_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyseven.style.position = "absolute";
 div_twentyseven.style.top = y+"px";
 div_twentyseven.style.left = x+"px";
 div_twentyseven.style.visibility = "visible";
 div_twentyseven.style.height = '263px';
 div_twentyseven.style.width  = '350px';
 div_twentyseven.style.border  = '8px solid white';
 div_twentyseven.style.borderTop  = '10px solid white';
 div_twentyseven.style.borderBottom  = '10px solid white';
 div_twentyseven.style.overflow  = 'visible';
 
 
 }
 
function image_twentyseven_hide()
  {
   var div_four   = window.document.getElementById("divtwentyseven");
 div_four.style.visibility = "hidden";
  }
  
function image_twentyeight_hover()
 {
 var image_one = window.document.getElementById("twentyfive");
 var div_twentyeight = window.document.getElementById("divtwentyeight");

var car_pic = window.document.getElementById("carimage27");
 car_pic.src ="images/fj_28_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '263px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_twentyeight_hide()
  {
   var div_four   = window.document.getElementById("divtwentyeight");
 div_four.style.visibility = "hidden";
  }
  
function image_twentynine_hover()
 {
 var image_one = window.document.getElementById("twentynine");
 var div_twentyeight = window.document.getElementById("divtwentynine");

var car_pic = window.document.getElementById("carimage28");
 car_pic.src ="images/fj_29_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '263px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_twentynine_hide()
  {
   var div_four   = window.document.getElementById("divtwentynine");
 div_four.style.visibility = "hidden";
  }
  
function image_thirty_hover()
 {
 var image_one = window.document.getElementById("twentynine");
 var div_twentyeight = window.document.getElementById("divthirty");

var car_pic = window.document.getElementById("carimage29");
 car_pic.src ="images/fj_31_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '263px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirty_hide()
  {
   var div_four   = window.document.getElementById("divthirty");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtyone_hover()
 {
 var image_one = window.document.getElementById("twentynine");
 var div_twentyeight = window.document.getElementById("divthirtyone");

var car_pic = window.document.getElementById("carimage30");
 car_pic.src ="images/fj_34_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '191px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirtyone_hide()
  {
   var div_four   = window.document.getElementById("divthirtyone");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtytwo_hover()
 {
 var image_one = window.document.getElementById("twentynine");
 var div_twentyeight = window.document.getElementById("divthirtytwo");

var car_pic = window.document.getElementById("carimage31");
 car_pic.src ="images/fj_32_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '191px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirtytwo_hide()
  {
   var div_four   = window.document.getElementById("divthirtytwo");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtythree_hover()
 {
 var image_one = window.document.getElementById("thirtythree");
 var div_twentyeight = window.document.getElementById("divthirtythree");

var car_pic = window.document.getElementById("carimage32");
 car_pic.src ="images/fj_39_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '191px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirtythree_hide()
  {
   var div_four   = window.document.getElementById("divthirtythree");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtyfour_hover()
 {
 var image_one = window.document.getElementById("thirtythree");
 var div_twentyeight = window.document.getElementById("divthirtyfour");

var car_pic = window.document.getElementById("carimage33");
 car_pic.src ="images/fj_30_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '263px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirtyfour_hide()
  {
   var div_four   = window.document.getElementById("divthirtyfour");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtyfive_hover()
 {
 var image_one = window.document.getElementById("thirtythree");
 var div_twentyeight = window.document.getElementById("divthirtyfive");

var car_pic = window.document.getElementById("carimage34");
 car_pic.src ="images/fj_35_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '263px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirtyfive_hide()
  {
   var div_four   = window.document.getElementById("divthirtyfive");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtysix_hover()
 {
 var image_one = window.document.getElementById("thirtythree");
 var div_twentyeight = window.document.getElementById("divthirtysix");

var car_pic = window.document.getElementById("carimage35");
 car_pic.src ="images/fj_36_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '263px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 }
 
function image_thirtysix_hide()
  {
   var div_four   = window.document.getElementById("divthirtysix");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtyseven_hover()
 {
 var image_one = window.document.getElementById("thirtyseven");
 var div_twentyeight = window.document.getElementById("divthirtyseven");

var car_pic = window.document.getElementById("carimage36");
 car_pic.src ="images/fj_37_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '263px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirtyseven_hide()
  {
   var div_four   = window.document.getElementById("divthirtyseven");
 div_four.style.visibility = "hidden";
  }
  
 function image_thirtyeight_hover()
 {
 var image_one = window.document.getElementById("thirtyseven");
 var div_twentyeight = window.document.getElementById("divthirtyeight");

var car_pic = window.document.getElementById("carimage37");
 car_pic.src ="images/fj_38_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '233px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';
 
 
 }
 
function image_thirtyeight_hide()
  {
   var div_four   = window.document.getElementById("divthirtyeight");
 div_four.style.visibility = "hidden";
  }
  
function image_thirtyseven_hide()
  {
   var div_four   = window.document.getElementById("divthirtyseven");
 div_four.style.visibility = "hidden";
  }
  
 function image_thirtynine_hover()
 {
 var image_one = window.document.getElementById("thirtyseven");
 var div_twentyeight = window.document.getElementById("divthirtynine");

var car_pic = window.document.getElementById("carimage38");
 car_pic.src ="images/fj_33_over.jpg";
 
 x = findPosX(image_one) + 183;
 y = findPosY(image_one) + 95;
  
 div_twentyeight.style.position = "absolute";
 div_twentyeight.style.top = y+"px";
 div_twentyeight.style.left = x+"px";
 div_twentyeight.style.visibility = "visible";
 div_twentyeight.style.height = '227px';
 div_twentyeight.style.width  = '350px';
 div_twentyeight.style.border  = '8px solid white';
 div_twentyeight.style.borderTop  = '10px solid white';
 div_twentyeight.style.borderBottom  = '10px solid white';
 div_twentyeight.style.overflow  = 'visible';

 
 
 }
 
function image_thirtynine_hide()
  {
   var div_four   = window.document.getElementById("divthirtynine");
 div_four.style.visibility = "hidden";
  }