$("#input_text").click(function(){
$("#input_fonts").show();
});
$("#input_fonts").hover(
function () {
$(this).show();
},
function () {
$(this).hide();
}
);
$("#input_text").click(function(){
$("#input_fonts").show();
});
$("#input_fonts").hover(
function () {
$(this).show();
},
function () {
$(this).hide();
}
);