$(document).ready(function(){
	
	$('.acc_content').hide();
	$('.acc_link').click(function(){
		var checkElement = $(this).parent().next();
		
		if ((checkElement.is('.acc_content')) && (checkElement.is(':visible'))) {
			checkElement.hide();
			$(this).css("background", "url('../images/bg_acc_up.png') left 3px no-repeat");
			return false;
		};
		
		if ((checkElement.is('.acc_content')) && (!checkElement.is(':visible'))) {
			$('.acc_content:visible').hide();
			$('.acc_link').css("background", "url('../images/bg_acc_up.png') left 3px no-repeat");
			checkElement.show();
			$(this).css("background", "url('../images/bg_acc_down.png') left 3px no-repeat");
			return false;
		};
		
	});
	
});
