function EmailToAFriend()
{
 var message = "Hi,\nThought this page on the Version 1 website may be of interest to you:\n"+window.location;
 var subject = "Check this page on the Version 1 website";

 window.open("mailto:?subject="+escape(subject)+"&body="+escape(message),"_self");
}
$().ready(Init);

function Init()
{
    $("#services-menu li a").click(function(){
        var selId = $("#services-menu li.active").removeClass("active").find("a").attr("rel");
        $('#'+selId).removeClass("visible");
        var anchor = $(this);
        anchor.parent().addClass("active");
        $('#'+anchor.attr("rel")).addClass("visible");
    });
    
    $(".homePagedSection ul a").click(function(){
        var anchor = $(this);
        var selId = anchor.parent().parent().find("li.active").removeClass("active").find("a").attr("rel");
        $('#'+selId).removeClass("visible");        
        anchor.parent().addClass("active");
        $('#'+anchor.attr("rel")).addClass("visible");
    });
}
