$('document').ready(function(){
		
		$('#fodral').delay(500).animate({opacity: 1}, 1000, "linear");
		
		//mainNavigation Hovers
		$('.primeLink').hover(function() { //mouse in
		$(this).animate({ color: '#c1272e' }, 600, 'linear');
		}, function() { //mouse out
		$(this).animate({ color: '#4E4E4E' }, 600, 'linear');
		});
		
		
		//sekund�r navigation hover
		$('.mainLink').hover(function() { //mouse in
		$(this).animate({ color: '#c1272e' }, 600);
		}, function() { //mouse out
		$(this).animate({ color: '#4E4E4E' }, 600);
		});
		
		//video och fil l�nkar
		$(".splashLink").hover(function(){
			$(this).stop().animate({ marginRight: '10px' }, 200, 'linear');
		},function(){
			$(this).stop().animate({ marginRight: '0px' }, 200, 'linear');		
		});
		
		
				//video och fil l�nkar
		$(".mover").hover(function(){
			$(this).stop().animate({ marginRight: '10px' }, 200, 'linear');
		},function(){
			$(this).stop().animate({ marginRight: '0px' }, 200, 'linear');		
		});
		
		
		//Footer-l�nkar
		$('.siteList li a').hover(function(){
			$(this).animate({ paddingLeft: '10px' }, 200, 'linear');
		},function(){
			$(this).animate({ paddingLeft: '0px' }, 200, 'linear');
		});
});
