/*
window.addEvent( 'domready', function(){
 
	//remove no js stuff
	$('people-container').setStyle('width', '2640px');
	$('people-container').setStyle('postion', 'relative');
	$('people-container').setStyle('left', '-880px;');
 
 $$( '.person' ).each(function(item){
	item.setStyle('display', 'none');
	
 
 
	} );
} );



*/
window.addEvent( 'domready', function(){
	isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
	if(isIE6 != true) {
	$('people-holder').addClass('people_js');
	
	$$( '.person' ).each(function(item){
	item.removeClass('person_nojs');
	});
	$$( '#infobar-people-main ul li a' ).each(function(item){
	item.setProperty('href', '#!');
	});
	
		var nS4 = new noobSlide({
			box: $('people-container'),
			items: $$('#people-container .person'),
			size: 880,
			handles: $$('#infobar-people-main ul li a'),
			onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('selected');
				this.handles.addClass('disabled');
				currentHandle.removeClass('disabled');
				currentHandle.addClass('selected');
			}
		});
		}
} );
