// This is all the Javascript used in the Phoenix Fleet Website

	$(document).ready(function() {
			$('#commentbox').hide();
			$('a.comment').click(function() {
				var id = $(this).attr('id');
	
			$('#commentbox' + id).toggle(500);
	
			// alert(id);
			return false;
		});
	}); 

	$(document).ready(function() {
			$('#submenu').hide();
			$('a.menusub').click(function() {
			$('#submenu').toggle(500);
			return false;
		});
	});

	$(document).ready(function() {
			$('#newssubmenu').hide();
			$('a.newsmenusub').click(function() {
			$('#newssubmenu').toggle(500);
			return false;
		});
	}); 

	$(document).ready(function() {
			$('#commentbox2').hide();
			$('a.comment2').click(function() {
				var id = $(this).attr('id');
	
			$('#commentbox2' + id).toggle(500);
	
			// alert(id);
			return false;
		});
	}); 


