$(document).ready(function(){
	
	// Set home button width
	var $h = $('ul#main_nav li:first-child');
	var hw = ($h.width())+4;
	$h.css('width', hw).css('text-align', 'center');
	
	// Sidebar quote centering
	$('#callout p').vAlign();
	
	// Add target attribut to outbound links
	$('a[href*="http://"]:not([href*="bishopandadkins.com"])').attr('target','_blank');
	
});

//Plugin to center inline elements vertically

(function ($) {
$.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().height();
	var mh = Math.ceil((ph-ah) / 2);
	$(this).css('margin-top', mh);
	});
};
})(jQuery);
