$(document).ready(function() {
 
$(".visa1").toggle(
  function () {
    $(".tavla1").show("slow");
  },
  function () {
    $(".tavla1").hide("slow");
  }
);

$(".tavlaknapp").click(function(){
	$(".tacktext").show("slow");	
});


$(".visa2").toggle(
  function () {
    $(".tavla2").show("slow");
	$('.medtext').addClass('ml');
  },
  function () {
    $(".tavla2").hide("slow");
	$('.medtext').removeClass('ml');
  }
);


$("#dialog").dialog({  autoOpen:false });
$("#dialog").dialog({ height: 400 });
$("#dialog").dialog({ width: 450 });
$("#dialog").dialog({ title: 'Tävlingsregler' });
$("#dialog").dialog({ modal: true });


$("#spelet").dialog({  autoOpen:false,
						height: 798,
						width: 800,
						title: 'Memory',
						modal: true
					});

$(".oppnaspelet").click(function(){
	$("#spelet").dialog("open");	
});

$(".lasregler").click(function(){
	$("#dialog").dialog("open");	
});

});
