        function call(apps,id)
        {
                $.ajax({
					type: "GET",
					url: "apps/" + apps + ".php?id=" + id,
	              	success : function (oXHR, status)
					{
                        $("#content").html(oXHR);
                        
                        if (id==8)
                        {
                            
                            $(function() {
                                $('#gallery a').lightBox();
                            });
                            
                        }
                        
	               	},
	                error : function (oXHR, status) {
	                    alert("error call");
	                }
				});
            
        }
        

        function title_show(id)
        {
            $(".title").css("display","none");
            $(".title_" + id).css("display","block");
        }
        
                           
                            $(function() {
                                $('#gallery a').lightBox();
                            });
 
