function draw_pillars(){	document.getElementById( 'point_headings' ).innerHTML = 		"<a href='#' onclick='show_pillar( 1 ); return false;'><img width='10' height='14' alt='' src='images/blue_bullet.gif' /> DEPTH</a> " +		"&nbsp <a href='#' onclick='show_pillar( 2 ); return false;'><img width='10' height='14' alt='' src='images/blue_bullet.gif' /> QUALITY</a> " +		"&nbsp <a href='#' onclick='show_pillar( 3 ); return false;'><img width='10' height='14' alt='' src='images/blue_bullet.gif' /> LEADERSHIP</a> " +		"&nbsp <a href='#' onclick='show_pillar( 4 ); return false;'><img width='10' height='14' alt='' src='images/blue_bullet.gif' /> INNOVATION</a> " +		"&nbsp <a href='#' onclick='show_pillar( 5 ); return false;'><img width='10' height='14' alt='' src='images/blue_bullet.gif' /> ACTION</a> ";}function show_pillar( n ){	var		pillar_text = '';		switch( n )	{		case 1:			pillar_text = "At Rand Market Research, we are single-mindedly focused on getting below the surface " +					"understanding consumers and professionals behave and respond as they do. As " +					"<strong>qualitative specialists</strong>, we do not conduct any quantitative research - we leave " +					"that to the quantitative research experts.";			break;				case 2:			pillar_text = "We set only the highest standards for our research and we are committed to " +					"delivering top <strong>quality service</strong> on every aspect of every project. " +					"See&nbsp;<a href='promises.html'>Our&nbsp;Promise</a>.";			break;				case 3:			pillar_text = "Rand Market Research is determined to stay at the leading edge of <strong>qualitative research</strong>. " +					"We are constantly learning and employing the latest qualitative research techniques " +					"to every project. In 2002, Rand Market Research was one of the first Canadian companies " +					"to offer <strong>on-line research</strong> to our clients. In 2003, we blazed new trails in " +					"<strong>on-site research</strong> (in-store, in-home, in-office).";			break;				case 4:			pillar_text = "At Rand Market Research, we are consistently exploring new techniques and methods " +					"to enrich and expand our <strong>qualitative research</strong> toolbox. Talk to us today " + 					"to learn more about some of our most interesting tools and techniques.";			break;				case 5:			pillar_text = "We want to maximize our clients return on their research investments. " +					"We want to ensure that each project culminates in tangible, actionable " +					"recommendations that take into account both the <strong>consumer insights</strong> identified " +					"in the research and our clients' <strong>business reality</strong>.";			break;	}		document.getElementById( 'point_description' ).innerHTML = "<p>" + pillar_text + "</p>";	document.getElementById( 'point_description' ).style.height = "110px";}
