// JavaScript Document
 $(document).ready(function() {
	$().piroBox({
			my_speed: 600, 
			bg_alpha: 0.5, 
			radius: 4, 
			scrollImage : false,
			pirobox_next : 'piro_next', 
			pirobox_prev : 'piro_prev',
			close_all : '.piro_close',
			slideShow : 'slideshow', 
			slideSpeed : 4 
	});
});
 
	function showDiv(pId) 
  {
		if (!pId) return false;
		var i = 1;
		while (el = document.getElementById('div_' + i)) {
			i == pId ? el.style.display = 'block' : el.style.display = 'none';
			i++;
			}
	}
	function showmenu(pId) 
  {
		if (!pId) return false;
		var i = 1;
		while (el = document.getElementById('menu_' + i)) {
			i == pId ? el.className='m_'+i+'_a' : el.className='m_'+i+'_i';
			i++;
			}
	}
