$(document).ready(function() {
//TOGGLE CLASS	
	$(".selectList li").click(function (){
		$(this).toggleClass('selected');
	});

//ANIMATE
$(".selectList2 li").click(function (){
	$(this).toggleClass('selected');
	margin = $(this).css('margin-left');
	if(margin=='0px'){
		leftmargin='20px';
	} else {
		leftmargin='0px';
	}
	$(this).animate({ 
		marginLeft: leftmargin,
		}, 400 );
})
	
//SLIDE SECTION
$("div[class^='expand-header']").click(function (){
	if($(this).hasClass('expand-header-no')){
		$(this).removeClass('expand-header-no');
		$(this).addClass("expand-header");
	} else {
		$(this).removeClass('expand-header');
		$(this).addClass("expand-header-no");
	}
	el = $(this).attr("id");
	el = el+"-s";
	$("#"+el).slideToggle(300);
});


// CHECK BOX LIST
$(".checkboxList li").click(function (){
	if($(this).hasClass('unchecked')){
		$(this).removeClass('unchecked');
		$(this).addClass('checked');
	} else {
		$(this).removeClass('checked');
		$(this).addClass('unchecked');
	}
});
});