/**
 * JQuery!
 */
$(function()
{
	
	$("#tabs").tabs();
	
	$("#tabskl").tabs();
	
	$("#tabsmn").tabs();
		
});

/**
 * Very nice Complex Browser
 */
/* get the browser width and height at run time*/
var brWidth = 0;
var brHeight = 0;
var typoArg = "";
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
//Handle all the FSCommand messages in a Flash movie.
function mmFlash_inlogscherm_DoFSCommand(command, args) {
	alert(command);
	alert(args);
}
function BrowserResize() {
	if (document.all){
		try{
			brWidth = document.body.clientWidth;
			brHeight = document.body.clientHeight;
		} catch(e) {
		}
	}else{
		try{
			brWidth = window.innerWidth;
			brHeight = window.innerHeight;
		} catch(e) {
		}
	}
	loadSWF();
}
