var urlGenerator;




function __urlGenerator()
{


    this.accomodationLink= function( id )
    {
        return window.location.protocol+"//"+window.location.hostname+"/accomodation/"+id;
    }


    this.slopeLink= function( id )
    {
        return window.location.protocol+"//"+window.location.hostname+"/slope/"+id;
    }


    this.locationLink= function( id )
    {
        return window.location.protocol+"//"+window.location.hostname+"/location/"+id;
    }



    this.smallGalleryImage= function( filename )
    {
        return window.location.protocol+"//"+window.location.hostname+"/images/gallery_images_mini/"+filename;
    }



    this.bigGalleryImage= function( filename )
    {
        return window.location.protocol+"//"+window.location.hostname+"/images/gallery_images_big/"+filename;
    }




    this.bigInterhomeImage= function( filename )
    {
        return "http://web.interhome.com/ImagesIps/Zoom/AT/"+filename;
    }



    this.smallInterhomeImage= function( filename )
    {
        return "http://web.interhome.com/ImagesIps/Normal/AT/"+filename;
    }


    return this;
}


urlGenerator= new __urlGenerator();

