		function initialize() {
			// Sweet Wishes Latitude and Longitude
			var latlng = new google.maps.LatLng(30.375301,-91.090804);
          	
          	// Map options
			var myOptions = {
				zoom: 15,
				center: latlng,
				mapTypeId: google.maps.MapTypeId.ROADMAP
			}
			
			// Where the map should be displayed
			map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
			
			// Adding a marker
			var marker = new google.maps.Marker({
		        position: latlng,
		        map: map, 
		        title:"Sweet Wishes Cafe"
    		});
		
			/* The info window doesn't like our z-index properties.
			// Creating an InfoWindow
			var infowindow = new google.maps.InfoWindow({
				content: 'Hello world'
			});
			
			// Adding a click event to the marker
			google.maps.event.addListener(marker, 'click', function() {
            	// Opening the InfoWindow
          		infowindow.open(map, marker);
          	}); */
		}
		$(document).ready(function(){
			$('#header-container').removeClass().addClass($.cookie("setFlavor"));
			$('a[href="#apricot"]').click(function(){
				var myFlavor = 'apricot';
				$('#header-container').removeClass().addClass(myFlavor);
				$.cookie("setFlavor", myFlavor);
			});
			$('a[href="#blueberry"]').click(function(){
				var myFlavor = 'blueberry';
				$('#header-container').removeClass().addClass(myFlavor);
				$.cookie("setFlavor", myFlavor);
			});
			$('a[href="#butterscotch"]').click(function(){
				var myFlavor = 'butterscotch';
				$('#header-container').removeClass().addClass(myFlavor);
				$.cookie("setFlavor", myFlavor);
			});
			$('a[href="#chocolate"]').click(function(){
				var myFlavor = 'chocolate';
				$('#header-container').removeClass().addClass(myFlavor);
				$.cookie("setFlavor", myFlavor);
			});
			$('a[href="#mint"]').click(function(){
				var myFlavor = 'mint';
				$('#header-container').removeClass().addClass(myFlavor);
				$.cookie("setFlavor", myFlavor);
			});
			$('a[href="#plain-jane"]').click(function(){
				var myFlavor = 'plain-jane';
				$('#header-container').removeClass().addClass(myFlavor);
				$.cookie("setFlavor", myFlavor);
			});
			$('a[href="#spice-sensation"]').click(function(){
				var myFlavor = 'spice-sensation';
				$('#header-container').removeClass().addClass(myFlavor);
				$.cookie("setFlavor", myFlavor);
			});
		});
	  var _gaq = _gaq || [];
	  _gaq.push(['_setAccount', 'UA-17525779-1']);
	  _gaq.push(['_trackPageview']);
	
	  (function() {
	    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	  })();
