$(function() {
    $(".submenu").hide();
    $(".menulist li").hover(
	function() {
	    $(this).children("ul").show();
	},
	function() {
	    $(this).children("ul").hide();
	});


    var topupPresets = {};
    $(".albumContainer").each(function() {
	topupPresets[".albumContainer[data-album=" + $(this).attr('data-album') + "] .thumbLink"] = {
	    group: $(this).attr('data-album'),
	    layout: "dashboard",
	    modal: 1,
	    effect: "show",
	    shaded: 1,
	    title: "Album " + $(this).attr('data-album'),
	    ondisplay: function() {
		$("#top_up").position({ my: "center", at: "center", of: ".content" });
	    }
	}
    });
    TopUp.addPresets(topupPresets);
})

