function goBack(pages){history.go(pages)}$(function(){getNews();$('#coin-slider').coinslider({width: 840, height: 265, delay: 10000, hoverPause: true, effect: 'random' });$("a#inline").fancybox({});$('#showMedarbetare').click(function(e){e.preventDefault();$('#chefsfilm').hide('fast');$('#medarbetarfilm').fadeIn('slow')});$('#showChef').click(function(e){e.preventDefault();$('#medarbetarfilm').hide('fast');$('#chefsfilm').fadeIn('slow')});function getNews(){$.ajax({type:"GET",url:"/RSS/nyheter.xml",dataType:"xml",success:function(xml){$(xml).find('item').each(function(){var newsTitle=$(this).find("title").text();var pubDate=$(this).find("pubDate").text();var newsText=$(this).find("description").text();$('#news-holder').append("<div class='news'> <h2> "+newsTitle+" </h2> <p>"+newsText+"</p> <br /><span class'pubInfo'>"+pubDate+"</span><br /> <br />")})},error:function(){console.log("Något blev fel när XML filen skulle laddas.")}})}});
