$(document).ready(function(){

	//if (typeof document.documentElement.style.maxHeight != "undefined") {
		$('img#cs3').hide();	


		$('a#m3').hover(
			function(){showIcon(3)},
			function(){closeIcon(3)}
		);


		$('a#im3').hover(
			function(){showIcon(3)},
			function(){closeIcon(3)}
		);
		
		function showIcon(p){
			$('img#cs'+p).show();
		}
		function closeIcon(p){
			$('img#cs'+p).hide();
		}
	//}
});