





(function() {
	var footerHeight = jQuery('.footer-element').height(); 
	
	
	var scrollLink = jQuery('<a></a>')
		.attr('href', '#top')
		.addClass('scroll-to-top-link')
		.addClass('scroll-to-top-link-round-black')
		.hide();
		
	
	

	var image= jQuery('<img/>')
		.attr('src', '/digitalAssets/463/c_463224-l_3-k_top-icon.png')
		.attr('alt', 'Till sidans topp.');

	scrollLink.append(image);

	jQuery('.page-content, .page-content-fullwidth').append(scrollLink);


	
	var showHideLink = function() {
		var windowHeight = jQuery(window).height();
		var scrollTopOffset = jQuery(document).scrollTop();

		// Toggle display of link
		if (scrollTopOffset > windowHeight / 2) {
			scrollLink.fadeIn(100);
		} else {
			scrollLink.fadeOut(100);
		}
	}
	
	
	showHideLink();
	
	
	jQuery(document).scroll(function() {
		showHideLink();
	});
})();
