/***************************************************************************
*                                                                          *
*    Copyright (c) 2010 TurnkeyWebsites.net                                *
*                                                                          *
* This is commercial software, can be installed only on ONE domain name    *
* Install and use this script only if you understand and agree to the      *
* terms and conditions of the License Agreement                            *
*                                                                          *
****************************************************************************
* PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE       *
*   "license.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE             *
****************************************************************************/
/****************************  Admin area - global settings *************/
Namespace("TurnkeyWebsites.RealEstateScript.DowntownMap");
TurnkeyWebsites.RealEstateScript.DowntownMap = Class.create({
    initialize:function(params)
        {
        $$('#downtown_map .area').each((function(el)
            {
            var complex_name=$(el.id).readAttribute('title');
            var complex_description=$(el.id).readAttribute('alt');
            $(el.id).onmouseover=function(){$('complex-info').update('<h2>'+complex_name+'</h2><p><img width=140" src="/skins/default/images/complexes/'+el.id+'.jpg" /></p><p>'+complex_description+'</p>');}   
            }
        ).bind(this));
        }
});
var $DowntownMap=TurnkeyWebsites.RealEstateScript.DowntownMap;
