$(document).ready(init);

function init(){
	startGallery();
}

function startGallery(){
	$("#imageHolder img").removeClass("hide");

	$('#imageHolder').before('<div id="galleryNav">').cycle({ 
    	fx:     'fade', 
   		speed:  'fast', 
    	timeout: 6000, 
    	pager:  '#galleryNav' 
	});
}


