function changeurl(page) {
  window.location = 'index.asp?page=' + page;
}

 $(document).ready(function(){
   
	var menuitems = $('#menu ul li');
	menuitems.hover(
		function(){
			$(this).css('background-color', '#999');
		},
		function(){
			$(this).css('background-color', '#ccc');
		}
	);

	menuitems.each(function(){
		$(this).click(
			function(){
				var anchor = $(this).find('a');
				var url = 'http://' + window.location.hostname + window.location.pathname;
				window.location.href = 'http://' + window.location.hostname + window.location.pathname + anchor.attr('href');
			}
		);
	});				

	var p = $('#content p');
	
	if (p.length > 1) {
		$('#content p:first').addClass('first');
		$('#content p:last').addClass('last');
	} else if (p.length == 1) {
		p.addClass('only');
	}

 });
