$(document).ready(function() {

		
	$("#wwmiconwebcam").click(function() {
		$('#wwmcontentwebcam').show();
		$('#wwmcontentweather').hide();
		$('#wwmcontentmap').hide();
	});
	$("#wwmiconweather").click(function() {
		$('#wwmcontentweather').show();
		$('#wwmcontentwebcam').hide();
		$('#wwmcontentmap').hide();
	});
	$("#wwmiconmap").click(function() {
		$('#wwmcontentmap').show();
		$('#wwmcontentweather').hide();
		$('#wwmcontentwebcam').hide();
	});
	
	$("#wwmiconwebcam").mouseover(function() {
		$(this).attr('src','/file/99280506eaf/IconWebcamMO.png');
	});
	$("#wwmiconweather").mouseover(function() {
		$(this).attr('src','/file/99280612f2d/IconWeatherMO.png');
	});
	$("#wwmiconmap").mouseover(function() {
		$(this).attr('src','/file/992807eb173/IconMapMO.png');
	});
	$("#wwmiconwebcam").mouseout(function() {
		$(this).attr('src','/file/9928064a66b/IconWebcamInactive.png');
	});
	$("#wwmiconweather").mouseout(function() {
		$(this).attr('src','/file/992807b2483/IconWeatherInactive.png');
	});
	$("#wwmiconmap").mouseout(function() {
		$(this).attr('src','/file/992808599b0/IconMapInactive.png');
	});

});