var photos = [ 
	{
		"image" : "header_img-1.jpg"		
	}, {		
		"image" : "header_img-2.jpg"		
	},	{		
		"image" : "header_img-3.jpg"
	},	{		
		"image" : "header_img-4.jpg"
	},	{		
		"image" : "header_img-5.jpg"
	},	{		
		"image" : "header_img-6.jpg"
	},	{		
		"image" : "header_img-7.jpg"
	},	{		
		"image" : "header_img-8.jpg"
	},	{		
		"image" : "header_img-9.jpg"
	},	{		
		"image" : "header_img-10.jpg"
	}
];
$(function() {
    $.preload(photos, {
        init: function(loaded, total) {
            //$("#indicator").html("Loaded: "+loaded+"/"+total);
        },
        loaded: function(img, loaded, total) {
           // $("#indicator").html("Loaded: "+loaded+"/"+total);
            //$("#full-screen").append(img);
        },
        loaded_all: function(loaded, total) {
			k=1;			
           // $("#indicator").html("Loaded: "+loaded+"/"+total+". Done!");
        }
    });
});

