// JavaScript Document

			$(document).ready(
				function () {
					$('li#buyItem').hover(
						function () {
							$('div#transparentPlace2').hide();
							$('ul#buyList').show();
						},
						function () {
							$('ul#buyList').hide();
							$('div#transparentPlace2').show();
						}
					);
					
					$('li#aboutItem').hover(
						function () {
							$('div#transparentPlace2').hide();
							$('ul#aboutList').show();
						},
						function () {
							$('ul#aboutList').hide();
							$('div#transparentPlace2').show();
						}
					);
					
					$('li#contactItem').hover(
						function () {
							$('div#transparentPlace2').hide();
							$('ul#contactList').show();
						},
						function () {
							$('ul#contactList').hide();
							$('div#transparentPlace2').show();
						}
					);
					
					$('li#featureItem').hover(
						function () {
							$('div#transparentPlace2').hide();
							$('ul#featureList').show();
						},
						function () {
							$('ul#featureList').hide();
							$('div#transparentPlace2').show();
						}
					);
					
					$('li#volunteerItem').hover(
						function () {
							$('div#transparentPlace2').hide();
							$('ul#volunteerList').show();
						},
						function () {
							$('ul#volunteerList').hide();
							$('div#transparentPlace2').show();
						}
					);
					
					$('li#faqItem').hover(
						function () {
							$('div#transparentPlace2').hide();
							$('ul#faqList').show();
						},
						function () {
							$('ul#faqList').hide();
							$('div#transparentPlace2').show();
						}
					);
				}
			);
