
jQuery(document).ready(function() {

	jQuery('.sub').hover(
			function (){
				jQuery('#' + this.id + ' .subSub').show(1);
			},
			function(){
				jQuery('#' + this.id + ' .subSub').hide(1);
			}
	);
	
});

