// JavaScript Document

function menuChanger(){
		$('div').each( function(){
			if($(this).is(':first-child') & $(this).is('.' + $('body').attr('class'))){ //If the div is the FIRST menu item and has the same class as the body...
				$(this).addClass('navItemCurrentFirst'); //Add the class 'navItemCurrentFirst'
			}
			
			else if($(this).is(':last-child') & $(this).is('.' + $('body').attr('class'))){ //If the div is the LAST menu item and has the same class as the body...
				$(this).addClass('navItemCurrentLast'); //Add the class 'navItemCurrentLast'
			}
			
			else if($(this).is('.' + $('body').attr('class'))){ //If the div is NEITHER the FIRST or LAST menu item and has the same class as the body...
				$(this).addClass('navItemCurrent'); //Add the class 'navItemCurrent'
			}
		});
	}
