// JavaScript Document

$(document).ready(function(){
	$('.accordeon').not('.active').children('.newsbox2').slideUp('fast');
	$('.active .controller .xpand').fadeOut('fast',function(){
			$(this).next('').fadeIn('fast');
		});
	
	$('.xpand').click(function(){
		$('.accordeon.active').removeClass('active').children('.newsbox2').slideUp('fast');
		$(this).parent('').parent('.accordeon').addClass('active').children('.newsbox2').slideDown('fast');	
		$('.xpand').fadeIn('normal');
		$(this).fadeOut('normal');
		return false;
	});
	
	
	$('.accordeonremote').click(function(){
		var accdest = '.xpand[href='+$(this).attr('href')+']';
		$(accdest).trigger('click');
		/*return false;*/
	});
	acdnFullButt();
	
	
});	//ready


	
	
function acdnFullButt(){
	$('.accordeon').not('.active').css('cursor','pointer').bind('click',function(){ 
		$(this).css('cursor','auto').unbind('click').find('.xpand').trigger('click');  
		acdnFullButt();
	});
};