Event.observe(document, 'dom:loaded', function() {
	// Wrap google map in loading <div> for extra CSS hook and to avoid div'itus
	$('gmap') && $('gmap').wrap('div', { 'class': 'map-load' });
	
	/**
	 *	RegEx SPANs into NAV
	 */
	/*$('nav-primary').select('ul.pri-nav > li').each(function(li){
		li.down('a').innerHTML = li.down('a').innerHTML.gsub(/\&amp;/,'<span class="amp">&amp;</span>');
	});*/
	
});

Event.observe(window, 'load', function() {
	if ($('product-slideshow')) {
		var productSlides = new protoShow('product-slideshow', {		
			buildNavigation		: false,
			buildControls		: true,
			captions			: false
		});	
	}
	
	if ($('gmap')) {
		new Effect.Morph('gmap', {
		  style: 'opacity: 1', // CSS Properties
		  delay: 0.5,
		  duration: 1 // Core Effect properties
		});
	}
	
});
