$('html').addClass('js-fouc');

$(document).ready(function(){	
		
	/* start bgazzard CR6590 27/04/2009 */	
	$('#toggleclick').click(function(event){
		$('#extras .expandable-header a').eq(1).parents('.expandable-header').next('.general-container').slideDown(1000).animate({opacity:1},300);
		$('#extras .expandable-header a').eq(1).children("span").addClass("opened");
		$('#extras .expandable-header a').eq(1).parent('div').removeClass('arrow').addClass('arrow-down');		
	});					   
	/* end bgazzard CR6590 27/04/2009 */	
						   
	$('#extras .general-container').css({'display':'none'});
	$('#extras .expandable-header a').wrap('<div class="arrow"></div>');
	$('#extras .expandable-header a').toggle(function() {
		$(this).parents('.expandable-header').next('.general-container').slideDown(1000).animate({opacity:1},300);
		$(this).children("span").addClass("opened");
		$(this).parent('div').removeClass('arrow').addClass('arrow-down');
	}, function() {
		$(this).parents('.expandable-header').next('.general-container').slideUp(1000);
		$(this).children("span").removeClass("opened");
		$(this).parent('div').removeClass('arrow-down').addClass('arrow');
	});			
});	
