
var Startpage =
{
    init: function ()
    {
       $("img.mainlink").hover(function(){
       
       this.src = this.src.insert(-4,"_hover");
       
       
       
       },function(){
       
       this.src = this.src.remove(-10,6);
       
       
       }); // Kod som ska köras då sidan har laddats
        // Använd tex jQuery för att haka på events etc
    }
   
}

