﻿$(function() {
    
    //Articlesearch, expand abstract text
    $('.articlesearchlist a.extra').click(function(){
        var $aNode = $(this);
        $(this).prev('p.hidden').slideToggle('slow', function(){
            if(!$aNode .hasClass('expanded')){
                $aNode.html('Dölj extra information');
                $aNode .addClass('expanded')
                }
            else{
                $aNode .removeClass('expanded')
                $aNode.html('Extra information');
            }
       
        });
        return false;
    });
    
    $('a.popup').click(function(){
        window.open($(this).attr('href'));
        return false;
    });

});
