$(document).ready(function(){
		$('.popupctrl').hover(
			function() {
				/*$('ul', this).css('top', "25px");*/
				$('.popupbody', this).css('display', 'block');
			},
			function() {
				$('.popupbody', this).css('display', 'none');
			}
		);

		$('.popoutctrl').hover(
			function() {
				$('.popoutbody', this).css('display', 'block');
				$('.popoutbody .popoutbody', this).css('display', 'none');
			},
			function() {
				$('.popoutbody', this).css('display', 'none');
				$('.popoutbody .popoutbody', this).css('display', 'none');
			}
		);
	});