jQuery(function($) {	

	var imgURL = 'includes/images/';
	
	$("a.more").bind('click', function() {
		
		if ($(this).hasClass('close')) {
			$("li.hide_list", $(this).parent().parent()).show();			
			$("img.abs_btn", $(this)).attr({src:imgURL + 'close_btn.png'});
			$(this).removeClass('close');
			$(this).addClass('open');
			return false;
			
		} else {
			
			$("li.hide_list", $(this).parent().parent()).hide();			
			$("img.abs_btn", $(this)).attr({src:imgURL + 'more_btn.png'});
			$(this).removeClass('open');
			$(this).addClass('close');
			return false;			
		}
	});
	
});


