$(document).ready(function(){
  
  if($('div.showhideForm').children('div').children('form').children('div').hasClass('wpcf7-mail-sent-ok, wpcf7-validation-errors') || $('div.showhideForm').children('div').children('form').children('div').hasClass('wpcf7-validation-errors')){
    $('div.showhideForm').show();
  }else{
    $('div.showhideForm').hide();
  }

  $('a.open').click(function(){
    $('div.showhideForm').toggle('slow');
    return false;
  });
  
  
	$("ul.tile-ranges").hide();
	
	$("h3 a.toggle").click(function(){
		if($("ul.tile-ranges").is(":hidden")) {
			$("ul.tile-ranges").slideDown();
			$("h3 a.toggle span").text("- Hide all");
		} else {
			$("ul.tile-ranges").slideUp();	
			$("h3 a.toggle span").text("+ Show all");		
		}
		return false;
	});

});

