$(document).ready(function () {
	$('#banner, #nav ul li a').hover(function () {
 $(this).children('span').stop(true,true).animate({width: 'show'}, 300);
 }, function () 
 {$(this).children('span').stop(true,true).animate({width: 'hide'}, 300);
  });
  
  	$("#nav ul li a").filter(function() {
      var currentURL = window.location.toString().split("/"); 
      return $(this).attr("href") == currentURL[currentURL.length-1];
    }).children('span').css('display', 'block');
  
     $('#rightbox, .vieraskirja_vastaus').css('opacity', 0.75);
	   $('#lomakelink').click(function() {
 $('#lomake').stop(true,true).slideToggle(1000);
 });
});