// JavaScript Document

function out_p (id) {
        
		document.getElementById(id).style.display = 'none';

         } // fucntion end

function hover_p (id) {
        for (i =1; i<document.getElementsByTagName("img").length; i++) {
        document.getElementsByTagName("img")[i].style.display = 'none';
		}
		document.getElementById(id).style.display = 'block';

         } // fucntion end
