
var j = jQuery.noConflict();
j(document).ready(function($){
	
	// Clickable Logo
    $().clickableLogo('Society for the Exploration of Psychotherapy Integration','http://www.sepiweb.org');
    
    // Header Banner
	if ($('#navtop1').length) {
		$('#navtop1').wrap('<div id="navtop1div"></div>');
	} else {
		$('#structuraltable > tbody > tr:first > td >img').wrap('<div id="navtop1div"></div>');
	}
	$('#navtop1div').append($('#header-banner-wrapper'));
	$().slideshow('header-banner');
						   
});

