var shoveler1, shoveler2;
// Create new YUI instance, and populate it with the required modules
YUI({
    combine: false, 
    debug: true, 
    filter:"RAW"
}).use('gallery-shoveler', function(Y) {
 
    shoveler1 = new Y.Shoveler( {
        contentBox: "#shoveler1",
		numberOfVisibleCells: 3,
		cyclical: true,
		renderFunctionName: "renderCellsWithPop"
    });
 
    shoveler1.render();

    shoveler2 = new Y.Shoveler( {
        contentBox: "#shoveler2",
		numberOfVisibleCells: 3,
		cyclical: true,
		renderFunctionName: "renderCellsWithPop"
    });
 
    shoveler2.render();
});
