/**************************************** 
 * Bethany Christian Church
 * Web Site
 * jq.load.js
 * Created by Kevin Scholl
 * http://www.ksscholl.com/
 ****************************************/

$(document).ready(function(){
 
	// adjust margin(s)
  $(""
		+ "div:last-child,"
		+ "fieldset:last-child,"
		+ "form:last-child,"
		+ "img:last-child,"
		+ "li:last-child,"
		+ "ol:last-child,"
		+ "p:last-child,"
		+ "table:last-child,"
		+ "ul:last-child,"
		+ "").css("margin-bottom","0");
	
  // open external links in new browser window
	$("a[href^='http']:not([href*='bethanyccdoc.com']), a[href^='https'], a[href*='.pdf']").attr("target","_blank");
	
	// hide all blocks but introduction
	$("div.infoBlock:not('#introduction')").hide();
	// function call when link is clicked
	$("ul#inPageLinks li a").click(function(){
		$("div.infoBlock").hide();
		$("div" + $(this).attr('href')).fadeIn();
		return false;
		});

  });
