function send(control){
	$(control).unbind("click");
	$(control).bind("click",function(){
		var sent_content = new Array(0);
		$.post(baseUrl+"/index/"+$(control).attr("id"),
			sent_content,
			function(msg) { 
			  	$("#content").html(msg);
			},
			"html"
		);
	});
};

function hideImage(control){
	$(control).parent().html('<input type="file" name="image" id="image"  style="width:300px;" >');
}

function sendtToOther(checked){
	if(checked){
		$('#hide_order_block').show("slow");
	}else{
		$('#hide_order_block').hide("slow");
	}
}

