$(document).ready(function() {  
		initTree()
		 if($(".secure").length >= 1) {

                $.get("/token.php",function(txt){
    	            $(".secure").append('<input type="hidden" name="ts" value="'+txt+'" />');
	            });
		}
		
		 $(".fancybox").fancybox({                                                                                                              
            'zoomSpeedIn':  0,                                                                                                       
            'zoomSpeedOut': 0,                                                                                                       
            'overlayShow':  true,                                                                                                    
            'padding'       :       5                                                                                                
          });

		$("#select_gallery").change(function(){

			var url="/projects.php?gallery="+$(this).val();

			$.ajax({
			   type: "GET",
			   url: url,
			   dataType: "json",
			   success: function(r){

					$("#galleryTitle").html(r.title);
					$("#galleryThumbBox").html(r.html);
					startTrans('DaImage',r.image)
					
			   }
			 });

		});

});


function cartManage(product_id,action) {

		$.ajax({
			   type: "GET",
			   url: "/cart.php?shop=modify&action="+action+"&product_id="+product_id,
			   dataType: "html",
			   success: function(r){
					$("#cart").html(r);
			   }
		});

}