$(document).ready(function() {

	var pageId = $('body').attr('id');

	$('#navigation a').each(function() {
		if($(this).attr('href') == pageId) {
			$(this).addClass("selected"); 
		} else if($(this).attr('href') == '' && pageId == 'home') {
			$(this).addClass("selected"); 
		}
	});

});

