/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
window.addEvent('domready', function() {
    if($defined($("wojPolskie"))){
        $('data_list').getElements('div').each(function(li){
           li.set('class','display_none');
        });
        $('mapkaPl').set('class','display_block');
        $('wojPolskie').getElements('area').each(function(area){
            var myTips = new Tips(area,{className: 'custom_tip'});
            area.store('tip:title', area.get('alt'));
            area.store('tip:text', 'Naciśnij aby dowiedzieć się więcej');
            area.addEvent('click',function(){
                
                if(Browser.Engine.trident){
                    $('data_list').getElements('div').each(function(li){
                            li.set('class','display_none');
                    });
                }else{
                    $("mapkaPl").morph({height: 50, width: 50});
                    $("mapkaPl").set('usemap','');
                    $("mapkaPl").setStyle('cursor','pointer');
                }
                //385 357
                $(this.get('id') + '_div').set('class','display_block');
                if(!Browser.Engine.trident){
                    $("mapkaPl").addEvent('click',function(){
                        this.morph({height: 357, width: 385});
                        this.set('usemap','#polska');
                        this.removeEvents('click');
                        $('data_list').getElements('div').each(function(li){
                            li.set('class','display_none');
                        });
                    });
                }
                else{
                    
                }                
            });
        });


	}
});








