function kelleher(){
	// aesthetics
	$("div.nav").prepend("<div class='bg'></div>");
	$("div.nav ul li").after("<li class='divider'></li>");
	$("div.nav ul li.divider:last").remove();
	
	// footer date
	var d=new Date();
	$("div.footer span.date").text(d.getFullYear());
	
	// callouts
	$("div.callouts div.callout").hover(
      function () { $(this).addClass("active"); }, 
      function () { $(this).removeClass("active"); }
    );
	$("div.callouts div.callout").click(function () {
		var url = $(this).find("a").attr('href');
		window.location = url;
	});
	$("div.rotate div").css({visibility:"visible"});
			
	// set innerfades
	$("div.hp div.rotate div").css({visibility:"visible"});
	$("div.hp div.rotate").innerfade({
		speed:750,
		timeout:7500,
		type:'random',
		containerheight: '375px'
	});

	$("div.int div.callouts").children("div.clear").remove();
	$("div.int div.callouts").innerfade({
		speed:750,
		timeout:9999999,
		type:'random',
		containerheight: '244px'
	});


	// equal height for internal columns
	var pageHeight = $("div.int div.page").height();
	var calloutsHeight = $("div.int div.callouts").height();
	if ( pageHeight < calloutsHeight ) {
		$("div.int div.page").css({height:calloutsHeight});
	}
	if ( calloutsHeight < pageHeight ) {
		$("div.int div.callouts").css({height:pageHeight});
	}


}

