
		 $(document).ready(function(){
				$('.graph-radar').innerfade({
					animationtype: 'fade',
					speed: 750,
					timeout: 3000,
					containerheight: '150px'
				});
				
				$('.tagline-rotate').innerfade({
					animationtype: 'fade',
					speed: 750,
					timeout: 3000,
					containerheight: '50px'
				});
				
				$('#clients').innerfade({
					animationtype: 'fade',
					speed: 750,
					timeout: 10000,
					containerheight: '250px'
				});
				
				$('#nav a').hover(function(){
					$(this).stop().animate({ paddingLeft: "10px"})
				}, function(){
					$(this).stop().animate({ paddingLeft: "0px"})
				});
				
				
											
				$('.method-map').find('img').fadeTo(2000, 1, function(){
			    	$('.method-map').find('img').delay(2000).fadeTo(2000, 0);
			    });
			    
			    setInterval(function() {
				    $('.method-map').find('img').fadeTo(2000, 1, function(){
				    	$('.method-map').find('img').delay(2000).fadeTo(2000, 0);
				    });
				}, 8000);
				  		
				
			
				/*

				$('.method-map').hover(function(){
					$(this).find('img').stop().fadeTo('slow', 0);
				}, function(){
					$(this).find('img').stop().fadeTo('slow', 1);
				});
*/

		});
