$(function(){
    $('.readmore').before('<div class="readmoreButtonContainer"><span class="readmoreButton">lees meer ▼</span></div>');
        $('.readmoreButtonContainer').fadeIn(750);
    
    if ( $.cookie('language') == 'de' ) {
    	$('.readmoreButton').html('mehr dazu ▼');
    } else {
    	$('.readmoreButton').html('lees meer ▼');
    }
    
    $('.readmoreButton').bind('click',function(){
        $this = $(this);
        
        // toggle text in button
        if( $this.parent().next('div.readmore').is(':hidden') ) {
			if ( $.cookie('language') == 'de' ) {
            	$this.text('schliessen ▲');
	        } else {
	          	$this.text('sluiten ▲');
	        }
        } else {
        	if ( $.cookie('language') == 'de' ) {
            	$this.text('mehr dazu ▲');
	        } else {
	          	$this.text('lees meer ▼');
	        }            
        }
        
        // toggle content
        $this.parent().next('div.readmore').slideToggle();

    })

    $('a.popup').bind('click', function(){
		newwindow=window.open($(this).attr('href'),'','height=475,width=777');
		if (window.focus) {newwindow.focus()}
		return false;
    })
})
