$(function() {
 	$("body").addClass("js");
	
	if($.browser.msie){
		$("#navigation ul.sf-menu li ul").css({opacity:0.95});
	}
	
	$("#navigation li").each(function() {
		if($(this).children("ul").length>0){
			$submenu = $(this).children("ul").eq(0);
			$clone = $(this).clone();
			$clone.prependTo($submenu).children("ul").eq(0).remove();
			$("<strong></strong>").appendTo($clone);
			$clone.children("a").appendTo($clone.children("strong").eq(0))
		}
	});
	$("#navigation > ul").superfish({delay: 100, speed: 500, dropShadows: false });

	$("#bg_image").addClass("slide"+Math.ceil(Math.random()*20));
	
	var imgdir = "slides/";
	var imgname = "slide";
	var swfvars = "max="+20+"&amp;imgDir="+encodeURIComponent(imgdir)+"&amp;imgName="+encodeURIComponent(imgname)+"&amp;imgStart="+(Math.ceil(Math.random()*20)-1)+"&amp;fadeTime=3&amp;fadeDelay=2000";
	var swfdir = "";
	var swffont = "images.swf";
	var newwidth_t = "800px";
	var newheight_t = "690px";
	var newid = "swfimages"+Math.floor(Math.random()*100000);
	if($.browser.msie){
		var obj = "<object data=\""+swfdir+swffont+"\" id=\""+newid+"\" width=\""+newwidth_t+"\" height=\""+newheight_t+"\" type=\"application/x-shockwave-flash\"><param name=\"type\" value=\"application/x-shockwave-flash\" /><param name=\"src\" value=\""+swfdir+swffont+"\" /><param name=\"data\" value=\""+swfdir+swffont+"\" /><param name=\"codebase\" value=\""+swfdir+swffont+"\" /><param name=\"movie\" value=\""+swfdir+swffont+"\" /><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\"><param name=\"pluginurl\" value=\"http://www.macromedia.com/go/getflashplayer\" /><param name=\"flashvars\" value=\""+swfvars+"\" /></object>";
	}else{
		var obj = "<object data=\""+swfdir+swffont+"\" id=\""+newid+"\" width=\""+newwidth_t+"\" height=\""+newheight_t+"\" type=\"application/x-shockwave-flash\"><param name=\"type\" value=\"application/x-shockwave-flash\" /><param name=\"src\" value=\""+swfdir+swffont+"\" /><param name=\"data\" value=\""+swfdir+swffont+"\" /><param name=\"codebase\" value=\""+swfdir+swffont+"\" /><param name=\"movie\" value=\""+swfdir+swffont+"\" /><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\"><param name=\"pluginurl\" value=\"http://www.macromedia.com/go/getflashplayer\" /><param name=\"flashvars\" value=\""+swfvars+"\" /></object>";
	}
	$(obj).appendTo("#bg_image");
	
	$("a[title^='New Window: ']").each(function(){
		var newtitle = String($(this).attr('title')).substring(String("New Window: ").length);
		$(this).attr('title',newtitle);
		$(this).click(function(){ var newwin = window.open($(this).attr('href'),'newwin'); newwin.focus(); return false; });
	});
 });