$(function(){
$('.circle').hover(function(){
				var tippart=$(this).attr('id');
				var offset=$(this).position();
				var tipheight=135;
				tippart=tippart.substring(3);
				if($(this).hasClass('altcircle')){
								$(this).attr('src','images/circleover2.png');
				} else {
								$(this).attr('src','images/circleover.png');
				}
				$('#actipdiv').css({'top':offset.top-9,'left':offset.left+34});
				$('#acactt').empty();
				if($('#actt'+tippart).length>0){
						var tt=$('#actt'+tippart);
						tipheight=tt.height()-100;
						$('#acactt').html(tt.html());
				} else {
						$('#acactt').html($('#acttdefault').html());
				}
				$('#tipsliver').attr('height',tipheight);
				$('#actipdiv').show();
		},
		function(){
				if($(this).hasClass('altcircle')){
								$(this).attr('src','images/circlenorm2.png');
				} else {
								$(this).attr('src','images/circlenorm.png');
				}
				$('#actipdiv').hide();
		});
			//function sidewidths(){
			//			var tp=$('#thepage').offset();
			//			tpl=tp.left;
			//}
			//sidewidths();
			$('#topmenu a').bind('mouseenter',function(e){
						var target=$(e.currentTarget).attr('id');
						var newsub=$('#sub'+target).html();
						var subwidth=$('#sub'+target).attr('title');
						var aspot=$(this).offset();
						if(newsub!=undefined){
									$('#sub1').html(newsub);
									$('#sub1').css({'left':aspot.left,'width':subwidth}).slideDown(400);
						}
						else{
									$('#sub1').hide();
						}

			});
			$('#topmenu').bind('mouseleave',function(){
						var aspot=$(this).offset();
						$('#sub1').stop(true,true);
						$('#sub1').hide();
			});

})
