﻿$(document).ready(function(){
		jQuery('#subnavi').accordion({ 
			active: false, 
			header: '.head',
			autoheight: false,
			alwaysOpen: false,
			navigation: false
		});
		
		$("#slogan_wrap").animate({ 
			opacity: 1,
			left: "0px"
      }, 1500 );
			
			$("a.laheta_viesti").click(function(){
			$(this).next("form").toggle('slow');
			return false
			});
			
			$(".lisatietoa").click(function(){
			$(this).next("div").toggle('slow');
			return false
			});
			
			$(".sulje").click(function(){
			$(this).parent("div").hide('slow');
			});
			
			$("#ota_yhteytta a").click(function(){
			$("#ota_yhteytta form").toggle('normal');
			return false
			});
 });
