var timeout
$(document).ready(function(){
	$(".left p").fadeOut(0);
	$(".right a.il").click(presentSection);
	$(".gohome").click(presentSection);
	$(".close").click(presentSection);
	
	imageObj = new Image();
    images = new Array();
    images[0]="img/inc_b.gif";
    images[1]="img/talks_b.gif";
    images[2]="img/closeb.gif";

    for(i=0; i< images.length; i++){
    	imageObj.src=images[i];
    }
});
function presentSection(e){
	e.preventDefault();
	$(".right a.il").removeClass("active");
	r = $(this).attr("rel");
	$(".left p").fadeOut();
	if (r != "home"){
		$(this).addClass("active");
		$(".left p[class=cnt_" + r + "]").fadeIn(400, function(){
			$(this).removeAttr('filter');
		});
	}
	switch (r){
		case "a_few_thoughtful_people":
		case "events":
			showart(".talk");
			break;
		
		case "myself":
		case "think_differently":
		case "thoughts_into_words":
		case "communications_team":
		case "contact":
			showart(".pan");
			break;
	
		case "help_people_present":
		case "words_about_me":
		case "direct_other_writers":
		default:
		showart(".bulb");
	}
	return false;
}
function showart(t){
	$(".art > *").fadeOut();
	$(".art").find(t).stop().fadeIn();
}

function doheight(){
	if ($(".right cufon").length > 0){
		clearTimeout(timeout);
		if($.browser.webkit){
			$("a").addClass('webkit');
		}
	}
}
