﻿$(document).ready(function() {


    $('.mappoint .icon').click(function() {
        
        showContent($(this).parent());
        
    });
    
    /* , function() {
        $('.content').fadeOut(100);
        $('#crosshairs').hide();
    } */
    $('.globalselect').change(function() {
        showContent($('#point' + $(this).val()));
     });
    
});

function showContent(p) {
    $('.content').hide();
	var content = $(p).find('a').attr('href');
    // alert($(content).html());
    
    var t = $(p).position().top;
    var l = $(p).position().left;
            
    $('#crosshairs').css({top: (t - 120), left: (l - 118)});
    $('#crosshairs').show();
    
    if(l > 520) {
        l -=430;
    }        
    
    if(t > 200) {
        t -= 170;
    }
    $(content).css({top: (t -20), left: (l +40)});
    $(content).fadeIn(200);

    $('.content .top').click(function() {
        $(content).fadeOut(100);
        $('#crosshairs').hide();
    });
}