$(document).ready(function () {
	var CurrentURL = window.location + "";
	var LinkURL;
    $('#head p a').each(function (){
		LinkURL = $(this).attr('href');
		if (CurrentURL.match(LinkURL)){
			$(this).addClass('yellow');
		}
    });
});
