// Project: Our Lady of Mt. Carmel
// File: custom.js (custom jquery functions)
// Creator: VIM Interactive, Inc.
// Copyright: (c) 2010 - VIM Interactive, Inc.

$(function(){
	
	$(".line:first").css("border-top","1px solid #abb7c5");
	$(".line:last").css("border-bottom","5px solid #abb7c5");
	$("#sidebar_nav ul li:last").css("border-bottom","none");
	$("#col1 h1:first").css("margin-top","0");

	
	var ti = $('#tabbed_interface>ul>li>a');
	ti.click(function(){ 
	$('#tabbed_interface>div').hide().filter(this.hash).show(); 
	ti.removeClass('highlight').filter(this).addClass('highlight'); 
	return false;
	});
	
});

