$(document).ready(function(){
			
	$(".subnav_block").hide();
	//$("div#fader_div").fadeOut(3000);
			
	$("#logo").mouseover(function() {
		$("#navigation").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	});
	$("#logo").click().toggle(function(){
		$(this).next().animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	}, function() {
		$(this).next().animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	});
		
	$(".mainnav2").click().toggle(function(){
		$(this).next().animate({
			height: 'show',
			opacity: 'show'
		}, 'fast');
	}, function() {
		$(this).next().animate({
			height: 'hide',
			opacity: 'hide'
		}, 'fast');
	});
	
	$("#mn_act").next().animate({
			height: 'show',
			opacity: 'show'
		}, 'fast');
	
	$("#mainblock").mouseover(function() {
		$("#navigation").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});
	
	 
});