	
		Cufon.replace('h1', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('h2', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('h3', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('h4', { fontFamily: 'Replica Std Light' });
		Cufon.replace('#news h4', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('#menu .left ul', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('#menu .lang ul', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('#client .navigation', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('.top', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('.Helsingborg', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('.Stockholm', { fontFamily: 'Replica Std Regular' });
		Cufon.replace('.Team', { fontFamily: 'Replica Std Regular' });
		
		$(document).ready(function(){
			$("ul.gallery li").hover(function() { //On hover...
				var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'
		
				//Set a background image(thumbOver) on the &lt;a&gt; tag 
				$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
				//Fade the image to 0 
				$(this).find("span").stop().fadeTo('normal', 0 , function() {
					$(this).hide() //Hide the image after fade
				}); 
				} , function() { //on hover out...
				//Fade the image to 1 
				$(this).find("span").stop().fadeTo('normal', 1).show();
			});

			//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
			//Full Caption Sliding (Hidden to Visible)
			$('ul.gallery li').hover(function(){
				$(".caption", this).stop().animate({top:'97px'},{queue:false,duration:260});
			}, function() {
				$(".caption", this).stop().animate({top:'132px'},{queue:false,duration:260});
			});
	
			// Scroll To Top
			 $('a.topOfPage').click(function(){
			 $.scrollTo( 0, 500);
				return false;
			 });
			
			// Keep #client .list in viewport at all times
			 var $scrollingDiv = $("#client .left, #contact .left");
			 $(window).scroll(function(){			
				$scrollingDiv
					.stop()
					.animate({"marginTop": ($(window).scrollTop() + 0) + "px"}, "slow" );			
			});
		});

	

		var aniLogo = function(){
			$("#moveMe").animate({
					"left": "-5630px"}, 6000, function(){
						$("#moveMe").css('left', '0px');
					});
			}
		
			$(document).ready(function() {
			var t = setTimeout('aniLogo()',100);
		setInterval('aniLogo()', 100);		
		});

