
  $(document).ready(function() {
	$("img.ad").mouseover(function () { $(this).fadeTo("fast", 0.75); });
	$("img.ad").mouseout(function () { $(this).fadeTo("fast", 1); });



	$('#viewmap').hide();	
	$('a.tab').click(function(e){
		e.preventDefault();
		// tabs
	

		$('.toggleme').hide();	

		$('a.tab').removeClass('current');
		$(this).addClass('current');
	
		var info = $(this).attr('href');
		
		$(info).show();
		

	});


  });

