jQuery(function($) {

    /*
     *  Set current position in globalNavigation item.
     */
    var cp = window.location.pathname.split('/')[1];
    if(!cp|cp == 'index.html') cp = 'home';
	$('#globalNavigation>ul>li').each(function() {
	   if($(this).hasClass(cp)) {
	       $(this).addClass('current');
	   }
	});
});

