$(document).ready(function(){

	
	if($('body').attr('id') == 'home') {
	
		$('#menudiv > ul > li:first').hide();
		
		$('#photosdiv  img').each(function() {
			var img =$(this).attr('src').replace("t.",".");
			$(this).attr('src',img).attr('width','250').attr('height','350');
			//$(this).show();
			
		});
		
			$('#photosdiv').innerfade({
				speed: 2000,
				timeout: 5000,
				type: 'sequence',
				animationtype: 'fade',
				containerheight: '350px'
			});

		
		
	 }  else { // section screen
	 
	 	activesection = $('body').attr('id');
		// MAIN MENU set to active
		$('#menudiv > ul > li > a[@href$=' + activesection + ']').attr('class', 'active');

	 
	 	var curpage = $('body').attr('id');
	 
	 	if ( curpage == 'difference') {
	 		$('#photosdiv > img:gt(0)').hide();
	 	} else if (curpage == 'people') {
	 		$('#photosdiv').hide();
	 	}
	 

		$('ol > li').each(function(i) {
			$(this).prepend('<span>'+ (i+ 1) + '</span>');
 			$(this).addClass('hidebullets');
		});

	 	
	 } 
	 
});

  
  
  
  
  
  
  
  


