// JavaScript Document

// Normal jQuery items
$(document).ready(function() {
	//turn off "print" and "email" buttons on artilces
	$("a[@target='print_this']").css({display: "none"});
	$("a[@target='email_this']").css({display: "none"});
	
	// Append to the #contactWrap div
	
	$("#contactWrap")
		.append('<p><span class="addtlOffice">Montgomery/Lake Conroe Office</span><br />Phone: 936-588-7300<br />16145 State Hwy 105 West, Suite #600<br />Montgomery, TX 77356</p><p><span class="addtlOffice">Bryan-College Station Office</span><br />Phone: 979-690-5655<br />4030 Hwy 6, Suite 325<br />College Station, TX 77845</p>');

});
