function startGallery() {
	var myGallery = new gallery($('myGallery'), {
		timed: true
	});
}
window.addEvent('domready',startGallery);

jQuery(document).ready(function(){
        
        setTimeout(showFirst, 2000);
        
        // slide down the first
        function showFirst() {
            jQuery('#adButton').hide();
            jQuery('#ad1').css('z-index', 3);
            jQuery('#ad1').slideDown("slow");
            
            setTimeout(reset, 7000); 
        }
        
        function reset() {
            //var showFirst = showFirst;
            jQuery('#ad1').slideUp("slow", function(){
                jQuery('#adButton').show();
                jQuery('#adButton').click(function(){
                    showFirst();
                });
            });
            
            
        }

});

