$(document).ready(function () { $(document).on("click","#dollyManualLimpeza", function(){ $.ajax({ url:"screen/dolly/manual_limpeza.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dolly", function(){ $.ajax({ url:"screen/dolly/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyVideoMontage", function(){ $.ajax({ url:"screen/dolly/video_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyUsageGuide", function(){ $.ajax({ url:"screen/dolly/usage_guide.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyInstrucoes", function(){ $.ajax({ url:"screen/dolly/manual_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#backMenuDolly", function(){ $.ajax({ url:"screen/dolly/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyFsManualLimpeza", function(){ $.ajax({ url:"screen/dolly_fs/manual_limpeza.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyFs", function(){ $.ajax({ url:"screen/dolly_fs/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyFsVideoMontage", function(){ $.ajax({ url:"screen/dolly_fs/video_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyFsUsageGuide", function(){ $.ajax({ url:"screen/dolly_fs/usage_guide.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#dollyFsInstrucoes", function(){ $.ajax({ url:"screen/dolly_fs/manual_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#backMenuDollyFs", function(){ $.ajax({ url:"screen/dolly_fs/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioFsManualLimpeza", function(){ $.ajax({ url:"screen/giorgio_fs/manual_limpeza.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioFs", function(){ $.ajax({ url:"screen/giorgio_fs/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioFsVideoMontage", function(){ $.ajax({ url:"screen/giorgio_fs/video_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioFsUsageGuide", function(){ $.ajax({ url:"screen/giorgio_fs/usage_guide.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioFsInstrucoes", function(){ $.ajax({ url:"screen/giorgio_fs/manual_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#backMenuGiorgioFs", function(){ $.ajax({ url:"screen/giorgio_fs/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioManualLimpeza", function(){ $.ajax({ url:"screen/Giorgio/manual_limpeza.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgio", function(){ $.ajax({ url:"screen/giorgio/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioVideoMontage", function(){ $.ajax({ url:"screen/giorgio/video_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioUsageGuide", function(){ $.ajax({ url:"screen/giorgio/usage_guide.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#giorgioInstrucoes", function(){ $.ajax({ url:"screen/giorgio/manual_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#backMenuGiorgio", function(){ $.ajax({ url:"screen/giorgio/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#VivanceManualLimpeza", function(){ $.ajax({ url:"screen/vivance/manual_limpeza.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#Vivance", function(){ $.ajax({ url:"screen/vivance/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#VivanceVideoMontage", function(){ $.ajax({ url:"screen/vivance/video_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#VivanceUsageGuide", function(){ $.ajax({ url:"screen/vivance/usage_guide.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#VivanceInstrucoes", function(){ $.ajax({ url:"screen/vivance/manual_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#backMenuVivance", function(){ $.ajax({ url:"screen/vivance/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#backHome", function(){ $.ajax({ url:"screen/home.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $.ajax({ url: "screen/home.php", method: "POST", success: function (data) { $("#body").html(data); } }); });