// image rotation script
// Uses the JQuery framework and must be called after JQuery.js
// The Guild
// v1.0.0 Sept 24 08

// Rotates the header background images
// Images should be in the static/images folder and follow the naming convention bg-header-row3_(number).jpg
// The maximum number of images used should be set manually in the totalNum variable below to allow the random picking
$(document).ready(function()	{
	$('#gMapButton').click(function()	{
		$('.oldeMappe').slideUp('slow')
		$('.googleMappe').fadeIn('slow');
	});
});	

$(document).ready(function()	{
	$('#oldeMappeButton').click(function()	{
		$('.googleMappe').hide('slow');
		$('.oldeMappe').show('slow');
	});
});	