jQuery('document').ready(function(){
	jQuery('.lbl_subcontent1_title').click(function(){
		jQuery('.subcontent2_s1').hide();
		jQuery('.subcontent2_s1[ref=' + jQuery(this).attr('ref') + ']').show();		
		jQuery('.lbl_subcontent1_title').css('color', '#999');
		jQuery(this).css('color', '#C0DD7D');
		
		return false;
	});
});

