<!--  initialize the slideshow when the DOM is ready -->
$(document).ready(function() {
    $('.slideshow').cycle({
		//fx: 'growX, scrollRight', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 4000,
		speed: 600
	});
	
	$("a#mapcontent").fancybox({ 
		'frameWidth': 640, 
		'frameHeight': 480,
		'hideOnContentClick': false
	});
});


// fancy box settings
$(document).ready(function() {	
	$("a.group").fancybox({
	    'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		//'centerOnScroll':   : false, 
		'autoScale	'		: false,
		'frameWidth'        : 600,
        'frameHeight'       : 640,
		'centerOnScroll'    : false, 
		'hideOnOverlayClick': true,
		'hideOnContentClick': true
	});
});	


// go back
function backhref(a) {
if (document.referer == a.href) {
history.back();
return false
}
};

