﻿$(document).ready(function() {
    $('a').each(function(){
        if (this.href == location) $(this).addClass('selected');
    });
});	