$(function()
{
   //animation images loader
   yesno = new Array();
   for(var i=0;i<5;i++)
   {
     yesno[i] = new Image();
     yesno[i].src = "images/animation/" + i + ".png";
   }
   
   //create animator object
   var player = new Animator('ani1', 2000, yesno, false);
   player.start(); 
    
    //event handlers for contact us
    $(".contact").hover(
    function () { 
       $(this).attr('src','images/contact_down.png');   
    },
    function () { 
       $(this).attr('src','images/contact_up.png'); 
    });

});

