$(document).ready(function()
{
   //position_player('player', 900, 500);

   $("#car img").mouseover(function()
   {
      $(this).stop().fadeTo("fast", 1.0);
   });

   $("#car img").mouseout(function()
   {
      $(this).stop().fadeTo("fast", 0.5);
   });

   /*$("#video_images a").click(function()
   {
      var url = document.getElementById("video").getAttribute("title");
      player.display(url); //display the player
   });*/
});

