
jQuery.noConflict();
jQuery(document).ready(function($) {
						   
	// Add invisible button on top of logo
	var str = '<div id="logo-click"><h1>Home Builders Association of Greater Austin</h1></div>';
	$("#structuraltable").after(str);
	
	// Add hyperlink to invisible button
	$("#logo-click h1").click(function() {
		window.location = "/";
	});
	
    // Move Sponsor Logos outside of Footer
    $('#footertable').after($('#sponsor-logos'));

});


