
$(document).ready(function(){
		loadovers();
	});

function loadovers()
{
		$(".bluelink").mouseover(function() {
                var $this = $(this);
                $this.addClass("bluelinkhover");
            });

            $(".bluelink").mouseout(function() {
                var $this = $(this);
                $this.removeClass("bluelinkhover");
            });
}

function doswitch(id) {
    $("#"+id).parent().children().hide()
    $("#"+id).show();



    /*$("#personal").mouseover(function () {
        var $this = $(this);
        $this.addClass("bluelinkhover");
    });

    $("#personal").mouseout(function () {
        var $this = $(this);
        $this.removeClass("bluelinkhover");
    });



    $("#advisor").mouseover(function () {
        var $this = $(this);
        $this.addClass("bluelinkhover");
    });

    $("#advisor").mouseout(function () {
        var $this = $(this);
        $this.removeClass("bluelinkhover");
    });



    $("#institutional").mouseover(function () {
        var $this = $(this);
        $this.addClass("bluelinkhover");
    });

    $("#institutional").mouseout(function () {
        var $this = $(this);
        $this.removeClass("bluelinkhover");
    });



    $("#can").mouseover(function () {
        var $this = $(this);
        $this.css("color", "#F98F00");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOn.jpg) no-repeat left top");
    });

    $("#can").mouseout(function () {
        var $this = $(this);
        $this.css("color", "#15345e");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOff.jpg) no-repeat left top");
    });



    $("#world").mouseover(function () {
        var $this = $(this);
        $this.css("color", "#F98F00");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOn.jpg) no-repeat left top");
    });

    $("#world").mouseout(function () {
        var $this = $(this);
        $this.css("color", "#15345e");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOff.jpg) no-repeat left top");
    });



    $("#both").mouseover(function () {
        var $this = $(this);
        $this.css("color", "#F98F00");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOn.jpg) no-repeat left top");
    });

    $("#both").mouseout(function () {
        var $this = $(this);
        $this.css("color", "#15345e");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOff.jpg) no-repeat left top");
    });



    $("#yes4").mouseover(function () {
        var $this = $(this);
        $this.css("color", "#F98F00");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOn.jpg) no-repeat left top");
    });

    $("#yes4").mouseout(function () {
        var $this = $(this);
        $this.css("color", "#15345e");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOff.jpg) no-repeat left top");
    });



    $("#no4").mouseover(function () {
        var $this = $(this);
        $this.css("color", "#F98F00");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOn.jpg) no-repeat left top");
    });

    $("#no4").mouseout(function () {
        var $this = $(this);
        $this.css("color", "#15345e");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOff.jpg) no-repeat left top");
    });



    $("#yes5").mouseover(function () {
        var $this = $(this);
        $this.css("color", "#F98F00");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOn.jpg) no-repeat left top");
    });

    $("#yes5").mouseout(function () {
        var $this = $(this);
        $this.css("color", "#15345e");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOff.jpg) no-repeat left top");
    });



    $("#no5").mouseover(function () {
        var $this = $(this);
        $this.css("color", "#F98F00");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOn.jpg) no-repeat left top");
    });

    $("#no5").mouseout(function () {
        var $this = $(this);
        $this.css("color", "#15345e");
        $this.css("background", "#fff url(http://new.relentlesstechnology.com/staging/vanarbor/site/images/radioOff.jpg) no-repeat left top");
    });*/



}
