$(document).ready(function(){
if (!($.browser.msie == true && $.browser.version < 7)) {
	$("div.business_wrap").css("display","none");
	$("h3.business_name").click(function(){
		$(this).next().toggle();
		$(this).toggleClass("active");
	});
} else {
	$("h3.business_name").css("width","860px");
};
});