Shadowbox.init({
    // skip the automatic setup again, we do this later manually
    skipSetup: true
});

window.onload = function() {

    // set up all anchor elements with a "movie" class to work with Shadowbox
    Shadowbox.setup("a.tron", {
        gallery:            "JavaTron",
        autoplayMovies:     false,
		counterType:    	"skip",
		handleOversize:		"drag"
    });
	
	Shadowbox.setup("a.graph", {
        gallery:            "Graph",
        autoplayMovies:     false,
		counterType:    	"skip",
		handleOversize:		"drag"
    });
	
	Shadowbox.setup("a.tbit", {
        gallery:            "TBit vs. Zombies",
        autoplayMovies:     false,
		counterType:    	"skip",
		handleOversize:		"drag"
    });
	
	Shadowbox.setup("a.wp", {
        gallery:            "Wordpress Theme",
        autoplayMovies:     false,
		counterType:    	"skip",
		handleOversize:		"drag"
    });
	
	Shadowbox.setup("a.marissa", {
        gallery:            "Marissa Giambrone's Portfolio",
        autoplayMovies:     false,
		counterType:    	"skip",
		handleOversize:		"drag"
    });
	
	Shadowbox.setup("a.stk", {
        gallery:            "Sworn to Kill Clan Website & Forum",
        autoplayMovies:     false,
		counterType:    	"skip",
		handleOversize:		"drag"
    });
};