$(document).ready(function() {
	// Bottom vh nav popup menu
	$('.vh_nav h3').toggle(function() {
		$(this).parent().css('opacity', '0');
		$('.state').html('<img src="/img/dn.png" width="9" height="9" alt="Close menu" />');
		$(this).parent().children('ul').fadeIn('fast');
		$(this).parent().css('height', 'auto');
		var hgt = $(this).parent().height();
		$(this).parent().css('top', -(hgt-35));
		$(this).parent().css('margin-bottom', -(hgt-35));
		$(this).parent().animate({
			opacity: '0.9'
		}, 50);
	},
	function() {
		$('.state').html('<img src="/img/up.png" width="9" height="9" alt="Expand menu" />');
		$(this).parent().children('ul').hide();
		$(this).parent().css('top', '0');
		$(this).parent().css('height', 'auto');
		$(this).parent().css('margin-bottom', '0');
		$(this).parent().animate({
			opacity: '0.9'
		}, 50);
	});
	
	// various functions that'd kill everything if they went wrong ...
	try
	{
		// googlemaps
		initMap();
	}
	catch(e)
	{
	}
	
});