﻿function show(data) {
	$('.app_form').html(data);
}

$(document).ready(function(){
		
		$(".app").click(function() { 
			$.post('includes/elementProduct.php', { element : $(this).attr("id") }, show, null);
			return false;
		});
});