﻿function RelativePath()
{
    var url = self.location.href;
    url = url.toLowerCase();
    var path = '';
    
    var local = 'localhost/';  
    var live  = 'http://hotellmb.com/';
    
    if(url.lastIndexOf(local) > -1)
        path = "http://localhost/lmb/";  
    else if(url.lastIndexOf(live) > -1)
        path = "http://hotellmb.com/";   
	else 
		 path = "http://hotellmb.com/";   
    
    return path;
}



