﻿//added scripts
function viewMore(val){
    if($("#map_slider").attr("rel")==val){
        viewLess();
    }else{
        if($("#map_slider").css("display")=="block"){
            $("#map_slider").html("");
            $("#map_slider").animate({ left:"0px", width: "0px" }, 250,"",function(){
                $("#map_slider").css("display","none");
                $("#map_slider").attr("rel","");
                viewSlideIn(val);
            });
        }else{
            viewSlideIn(val);
        }
    }
}
function viewLess(){
    $("#map_slider").html("");
    $("#map_slider").animate({ left:"0px", width: "0px" }, 250,"",function(){
        $("#map_slider").css("display","none");
        $("#map_slider").attr("rel","");
    });
}
function viewSlideIn(val){
    var link = "";
    switch(val){
        case 2:
            link = "page_northern cairngorms.asp";
            break;
        case 3:
            link = "page_lochaber.asp";
            break;
        case 4:
            link = "page_glencoe.asp";
            break;
        case 5:
            link = "page_southern cairngorms.asp";
            break;    
        case 6:
            link = "page_creag meagaidh.asp";
            break;
    }
    $("#map_slider").css("display","block");
    $("#map_slider").animate({ left:"-342px", width: "342px" }, 250,"",function(){
        $("#map_slider").html("<p style=\"float:right;margin-right:15px;\"><a href=\"JavaScript:viewLess();\">Close (X)</a></p><p>Please wait loading report...</p>");
        $("#map_slider").attr("rel",val);
        $.get("summary_report.asp?area_id=" + val,"",function(data){
            $("#map_slider").html("<p class=\"map_upper_links\"><a href=\"JavaScript:viewLess();\">Close (X)</a><br /><a style=\"line-height:3;\" href=\"" + link + "\">View Full Report</a></p>" + data);
        });
    });
}

