$(document).ready(function(){

  if (/MSIE 6/i.test(navigator.userAgent) || /MSIE 7/i.test(navigator.userAgent)) {
    $("hr").remove();
  }

  if (/MSIE 6/i.test(navigator.userAgent) == false) {
    Cufon.replace("h2");
    Cufon.replace("#etusivu-sidemenu a");
    Cufon.replace("#footer h3", {textShadow: "#fff 0px 1px 0px"});
    
  }
  
  $("ul").each(function(){
    $(this).find("li").last().addClass("last");
    $(this).find("li").first().addClass("first");
  });
  
  $("tr").each(function(){
    if ( $(this).find("td").size() > 1 ) {
      $(this).find("td").last().addClass("last");
    }
    $(this).find("td").first().addClass("first");
  });
  
  $("#mf").qfader();

	$('.toimitusehdot #content h3').click(function() {
		$(this).next('div').slideToggle(300);
	});
  
});
