$(function(){

	var thisPlace = location.pathname;
	
	var images = ["3","7","8","11","12","13","14","17","18","37","43","51","53","58","72","75","84","94","96","99","102"];
	
	if(thisPlace=='/'){
		$('#graphic_slideshow').toggle();
	}else if(thisPlace=='/martin_kohler.aspx'){
		$('<img SRC="/images/marty_head.jpg" HEIGHT="366" WIDTH="710" />').appendTo('#graphic_show');
		$("#graphic_show").delay("1024").fadeIn("512");
	}else if(thisPlace=='/michael_f_hart.aspx'){
		$('<img SRC="/images/michael_head.jpg" HEIGHT="366" WIDTH="710" />').appendTo('#graphic_show');
		$("#graphic_show").delay("1024").fadeIn("512");
	}else if(thisPlace=='/craig_powell.aspx'){
		$('<img SRC="/images/craig_head.jpg" HEIGHT="366" WIDTH="710" />').appendTo('#graphic_show');
		$("#graphic_show").delay("1024").fadeIn("512");
	}else if(thisPlace=='/geoff-misfeldt.aspx'){
		$('<img SRC="/images/geoff_head.jpg" HEIGHT="366" WIDTH="710" />').appendTo('#graphic_show');
		$("#graphic_show").delay("1024").fadeIn("512");
	}else{
		$('<img src="/images/image' + images[Math.floor(Math.random() * images.length)] + '.jpg" />').appendTo('#graphic_show');
		$("#graphic_show").delay("1024").fadeIn("512");
	};
	
	$("#graphic_slideshow img:gt(0)").hide();
    setInterval(function(){
      $("#graphic_slideshow :first-child").fadeOut()
         .next("img").fadeIn()
         .end().appendTo("#graphic_slideshow");}, 
      6000);
	
	$("#graphic_logo").delay("1024").fadeIn("512");
	$("#graphic_textbox").delay("1536").fadeTo("512",.75);
	$("#graphic_text").delay("1536").fadeIn("512");
		 
});
