jQuery(document).ready(function () { 

	var page = $('#navBar').attr('page');

	$('#navBar a').addClass('ui-corner-top');
	$("#content").addClass('ui-corner-all');

	$('#navBar a[href^='+page+']').addClass('selectedNav');
	
	$('#navBar a').hover(
		function() { $(this).addClass('hoveredNav') },
		function() { $(this).removeClass('hoveredNav') });

/*
	$("#navBar a:not(.selectedNav)").hover(
		function() { $(this).animate({'padding-top': 7, 'padding-bottom': 3, 'margin-top': -5}, 50) },
		function() { $(this).animate({'padding-top': 4, 'padding-bottom': 1, 'margin-top': 0}, 40) });
*/
	
});