var Site;

(function($) {
	Site = {

		// This vars should be set in <head> server-side
		config: {
			base_url: '',
			site_url: ''
		},
	
		// This method is called on every page
		init: function() {
			
			// On Dom Ready
			$(function() {
			
				$('#procedure_nav ul, #technology_nav ul, #about_nav ul').hide();
				
				
				$('#procedure_nav, #technology_nav, #about_nav').hoverIntent(function() {
					$('ul', $(this)).slideDown();
				}, function() {
					$('ul', $(this)).slideUp();
				});
				
				$('#glossary a, #statistic_links a, #map_link a').facebox();
				
				$('.large_map_wrapper').live('click', function(e) {
					$(this).html('<p><img src="images/main/location_map.gif" width="491" height="330" alt="Location Map" /></p>');
				});
				
			});
		
		}
	
	};
})(jQuery);

Site.init();
