﻿$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'scrollUp' ,// choose your transition type, ex: fade, scrollUp, shuffle, etc...
		 timeout: 5000,
		speed:  2500
		});
			// a workaround for a flaw in the demo system (http://dev.jqueryui.com/ticket/4375), ignore!
		$("#Button1").click(function() {
			$( "#dialog-modal" ).dialog({
			height: 800 ,
            width: 1100 ,
			modal: true,
			resizable: true
			
		});
	 $("form").submit();
	
$( "#dialog-modal" ).bind( "dialogclose", function(event, ui) {

var html = $.ajax({
  url: "http://www.cadsafe.se/loggaut.asp",
  async: false,
  success: function(msg){
 if (msg != "no") {
 alert(msg);
  	$( "#dialog-modal" ).unbind( "dialogclose");}

      }

 }).responseText;


});

			return false;
		});
		
	
	$("#Button2").click(function() {
			$( "#dialog-modal" ).dialog({
			height: 800 ,
            width: 1100 ,
			modal: true,
			resizable: true
		});
	$( "#dialog-modal" ).unbind( "dialogclose");
			return true;
		});


//$("#dialog-modal" ).dialog({close: function(event, ui) {alert("Du är utloggad")}});


});


