/**
* Function for Toggle the DIV's under Dropdown headers and toggle the arrow on the right top of the box.
* Also AJAX call a webstructure file which sets parameters in SESSION which boxes are opened and which are closed
*/
function toggleBox(id){
	$('#'+id).slideToggle('fast',function(){
		if($('#'+id).css('display') == "none"){
			$('#'+id+"_arrow").attr('src','/templates/default_redesign2012/images/arrow.png');
		}else{		
			$('#'+id+"_arrow").attr('src','/templates/default_redesign2012/images/arrow_down.png');
		}
	});	
}
