	function animate() {								$(".container").mouseover(function(){				$('.stepbox', this).show();				$('.stepbox', this).stop().clearQueue().animate({					marginLeft: '-150'					}, 750);			});						$(".container").mouseout(function(){				$('.stepbox', this).stop().clearQueue().animate({					marginLeft: '0'					}, 750, function() {						$(this).hide();					});			});						$(".sitebox").mouseover(function(){				$('.sitecontainer', this).stop().clearQueue().animate({					marginTop: '100'					}, 750);			});						$(".sitebox").mouseout(function(){				$('.sitecontainer' , this).stop().clearQueue().animate({					marginTop: '215'					}, 750);			});						$(".blogimage").mouseout(function(){								pausedImage = 10000;				pausedImageIteration =0;				$(".arrows",this).stop().clearQueue().fadeOut('500');			});			$(".blogimage").mouseover(function(){								pausedImage = $(".blogimage").index($(this));				pausedImageIteration = iteration;				$(".arrows",this).css('opacity','');				$(".arrows",this).stop().clearQueue().fadeIn('500');			});	}
