$(document).ready( function(){
	$('.boxtitle').corner("top");
	$('div.latestnews_box p').corner();
	$('div.fleetmgnt_box div.ctxt').corner();
	$('div.subcontent ul.contactinfo').corner();
	$('div.onlineform').corner();
	$('div.subnewscontent p').corner();

	$(".menulist a").each(function(){
		$(this).mouseover(function(){
			id=this.id;
			arr=id.split("_");
			ident=arr[arr.length-1];
			//content=$('#about_content_'+ident).html();
			$('.banner').each(function(){
				$(this).show();
			});
			$('.banner').each(function(){
				if(this.id!='menu_'+ident){
					$(this).hide();
				}else{
					$(this).hide().show();
				}
			});
		});
		$(this).mouseout(function(){
			if(this.id='menu_'+indent){
					$(this).show();
			}
		});
	});			  
  
});
