$(document).ready(function(){

    //run map
    $('.runMap').click(function(){
        //$(this).parent().addClass('miniLoader');  
        $('#map').load( 
            '/static/world-map/xhr', 
            function(){ 
               
                $('#windowOverlay__').fadeIn();
                $('#map').fadeIn();
            }

            );
        return false;
    });
    
    //close map
    $('#mapContainer .close').click(function(){
        
        $('#map').html('');      
        $('#map').fadeOut(
            function(){ 
                $('#windowOverlay__').hide();
            }
            );
    });
    
    
    //position
    $('#mapContainer .position').click(function(){
        window.location.replace('/static/where-buy/?map=' + $(this).attr('id'));
    });
    
    $('#mapPlContainer .position').click(function(){

        $('.mapContentContainer h2').html('Województwo: '+ $(this).attr('rel'));
        
        if ( $('.mapContent').hasClass( $(this).attr('id') ) ){
                $('.mapContent').hide();
                $('.mapContentNoData').hide();
                $('.mapContent.' + $(this).attr('id')).fadeIn();

        }else{
                $('.mapContent').hide();
                $('.mapContentNoData').fadeIn();
        }
    });
});

