	// Buttons handling

$(document).ready(function() {
	$(".answer").corner("20px");

	$(".buttonface").corner("7px");
	$(".buttonface").each(function() {
		if (!$(this).attr("href") || $(this).attr("href") == "")
			$(this).click(function() {
				var submit_inp = "<input type='submit' style='display:none;' />";
				$(this).parents("form").append(submit_inp);
				$(this).parents("form").children('input[type="submit"]').click();
			});
	});

	$(".navbot[pos=left]").corner("round left 10px keep");
	$(".navbot[pos=right]").corner("round right 10px keep");

	$(".round_header").corner("10px");
	$(".round_header").FontEffect();
	
	
});