$(function() {
	
	// hover menu	
	$('.two, .three, .four, .six').hoverIntent(function() {
		if ($('.mc:hidden')) {
			if ($.browser.msie && ($.browser.version == '6.0')) {
				$(this).children('.t_l').css({'filter':'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/menu_top_left.png",sizingMethod="crop"'}).next('p').css({'background-color':'#28186a'}).next('p').css({'filter':'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/menu_top_right.png",sizingMethod="crop"'});
			}
			else {
				$(this).children('.t_l').css({'background':'url(images/menu_top_left.png) no-repeat left top'}).next('p').css({'background-color':'#28186a'}).next('p').css({'background':'url(images/menu_top_right.png) no-repeat right top'});
			}
			$(this).children('.m_c').slideDown('fast');	
		}
	}, function() {		
			$(this).children('.m_c').slideUp('fast');
			if ($.browser.msie && ($.browser.version == '6.0')) {
				$(this).children('.t_l[id != "active"], .t_m[id != "active"]').css({'filter':'none', 'background':'none'}).children('span').css({'color':'#333'});
				$(this).children('.t_r[id != "active"]').css({'filter':'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/menu_top_rightb.png",sizingMethod="crop"'}).children('span').css({'color':'#333'});
			}
			else {
				$(this).children('.t_l[id != "active"], .t_m[id != "active"]').css({'background':'none'}).children('span').css({'color':'#333'});
				$(this).children('.t_r[id != "active"]').css({'background':'url(images/menu_top_rightb.png) no-repeat right top'}).children('span').css({'color':'#333'});
			}
	});

	$('.one, .five').hoverIntent(function() {
		if ($('.mc:hidden')) {
			if ($.browser.msie && ($.browser.version == '6.0')) {
				$(this).children('.t_l').css({'filter':'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/menu_top_left.png",sizingMethod="crop"'}).next('p').css({'background-color':'#28186a'}).next('p').css({'filter':'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/menu_top_rightn.png",sizingMethod="crop"'});
			}
			else {
				$(this).children('.t_l').css({'background':'url(images/menu_top_left.png) no-repeat left top'}).next('p').css({'background-color':'#28186a'}).next('p').css({'background':'url(images/menu_top_right.png) no-repeat right top'});
			}
			$(this).children('.m_c').slideDown('fast');	
		}
	}, function() {		
			$(this).children('.m_c').slideUp('fast');
			if ($.browser.msie && ($.browser.version == '6.0')) {
				$(this).children('.t_l[id != "active"], .t_m[id != "active"], .t_r[id != "active"]').css({'filter':'none', 'background':'none'}).children('span').css({'color':'#333'});
			}
			else {
				$(this).children('.t_l[id != "active"], .t_m[id != "active"], .t_r[id != "active"]').css({'background':'none'}).children('span').css({'color':'#333'});
			}
	});
	// hover menu END

});

function topnavi (value) {
	$(function() {
		if ($.browser.msie && ($.browser.version == '6.0')) {
			$('.'+value).children('.t_l').css({'filter':'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/menu_top_left.png",sizingMethod="crop"'}).next('p').css({'background-color':'#28186a'}).next('p').css({'filter':'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/menu_top_right.png",sizingMethod="crop"'});
		}
		else {
			$('.'+value).children('.t_l').css({'background':'url(images/menu_top_left.png) no-repeat left top'}).next('p').css({'background-color':'#28186a'}).next('p').css({'background':'url(images/menu_top_right.png) no-repeat right top'});
		}
	});
}