Shadowbox.loadSkin('shadowbox', 'http://fannygarvergallery.com/images'); // 'skinfolder', 'skin dir'

window.addEvent('domready', function() {
	//  ################################################################################################################################## //
	//  ##		HOME PAGE 
	//  ################################################################################################################################## //
		// coding the artist jump menu. redirects to artist.php with selected artist.
		if ($('artist_jump_menu')) {
			$('artist_jump_menu').addEvent('change', function() {
				window.location ='/artist.php?artist=' + $('artist_jump_menu').get('value');
			});
		}
		//carousel
		if ($('carousel')) {
			var simple_carousel = new SimpleCarousel($('carousel'), $$('#carousel div.slide'), $$('#carousel p span'), {
				slideInterval: 4000,
				rotateAction: 'click'
			});
		}
		//iphoto
		if ($('storepicsswap')) {
			new ImageScrubber($('storepicsswap'), 'includes/ajax_call.php?method=get_store_pics');
		}

	//  ################################################################################################################################## //
	//  ##		SHADOWBOX
	//  ################################################################################################################################## //
		var options = {
			overlayColor: '#446',
			overlayOpacity: .95,
			counterType: 'skip'
		};
		Shadowbox.init(options);
	
	//  ################################################################################################################################## //
	//  ##		ADMIN 
	//  ################################################################################################################################## //
});