$(document).ready(function(){
	$('.person-details').hide();
				
	// Key-bindings
	$('.smallbutton').bind('click',function(){
		var taget = $(this).parent().parent().find('.person-details');
		taget.slideToggle(500, function(){
			$('.person-details').not(taget).slideUp(500);
		});
		return false;
	});
	

	$('#close_header_link')
	    .hover(
	        function(){
    		    $(this).animate({'width' : '191px'},200);
    	    },
    	    function(){
    		    $(this).animate({'width' : '26px'},200);
    	    }
    	)
    	.mousedown(function(){
    	    $.post('http://www.kvidr.dk/helpers/processes/store_cookie.php');
    	    $('#banner').slideUp('700');
    	    $('body').attr('id','menu_only');
    	})
    	.bind('click',function(){ 
    	    return false; 
    	});	
});