 $(function(){
	var browser = navigator.appName;
	var b_version = navigator.appVersion;
	var version = parseFloat(b_version);
	if((browser == "Microsoft Internet Explorer") && (version <= 6))
	{
		$('#logocrestimg').attr('src','/cwimg/main_crest.gif');
	}
	$('div[class=menu]').each(function(){
		$(this).hover(function(){
			$('#smenu-'+$(this).attr('id')).show();
			$('#lmenu-'+$(this).attr('id')).addClass('menu_link_on');
		},function(){
			$('#smenu-'+$(this).attr('id')).hide();
			$('#lmenu-'+$(this).attr('id')).removeClass('menu_link_on');
		});
	});
	$('#logosmallhover').hover(function(){ $(this).attr('src','/cwimg/am_home.gif'); },function(){ $(this).attr('src','/cwimg/am_home.gif'); });
	$('#logohover').hover(function(){ $(this).attr('src','/cwimg/am_home_on.gif'); },function(){ $(this).attr('src','/cwimg/m_home.gif'); });
 });