$(document).ready(function(){
	$(".f1").click(function(){
		$('body').css('font-size', "8px");
		return false;
	});
	$(".f2").click(function(){
		$('body').css('font-size', "10px");
		return false;
	});
	$(".f3").click(function(){
		$('body').css('font-size', "12px");
		return false;
	});
	
	
	$(".project_custom .setting select").change(function(){
	   $(".project_custom .setting select option:selected").each(function () {
	     
		 if($(this).val() == 4) {
	       $("#edit .project_custom .other_settings").css("display", "block");
	     }else {
	      $(".project_custom .other_settings").css("display", "none");
	     }
	   
	   
	   });
	});
	
	 $(".project_custom .setting select option:selected").each(function () {
	     
		 if($(this).val() == 4) {
	       $("#edit .project_custom .other_settings").css("display", "block");
	     }else {
	      $(".project_custom .other_settings").css("display", "none");
	     }
	   
	   
	   });

});

