I have made a very quick jQuery slideshow, and I\'m using this to hide the DIVs which shouldn\'t be shown until it\'s their turn:
$(document).ready(function(
Disabling in CSS is fine, but then users without JS will never see them.
To disable for users with JS only, mark the body and appropriate CSS:
CSS:
.js #gall2, .js #gall3, .js #gall4 { display: none; }