/*
JSTarget function by Roger Johansson, www.456bereastreet.com
*/
var JSTarget = {
	init: function(att,val,warning) {
		if (document.getElementById && document.createElement && document.appendChild) {
			var strAtt = ((typeof att == 'undefined') || (att == null)) ? 'class' : att;
			var strVal = ((typeof val == 'undefined') || (val == null)) ? 'non-html' : val;
			var strWarning = ((typeof warning == 'undefined') || (warning == null)) ? ' (opens in a new window)' : warning;
			var oWarning;
			var arrLinks = document.getElementsByTagName('a');
			var oLink;
			var oRegExp = new RegExp("(^|\\s)" + strVal + "(\\s|$)");
			for (var i = 0; i < arrLinks.length; i++) {
				oLink = arrLinks[i];
				if ((strAtt == 'class') && (oRegExp.test(oLink.className)) || (oRegExp.test(oLink.getAttribute(strAtt)))) {
					oWarning = document.createElement("em");
					oWarning.appendChild(document.createTextNode(strWarning));
					oLink.appendChild(oWarning);
					oLink.onclick = JSTarget.openWin;
				}
			}
			oWarning = null;
		}
	},
	openWin: function(e) {
		var event = (!e) ? window.event : e;
		if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return true;
		else {
		    var oWin = window.open(this.getAttribute('href'), '_blank');
			if (oWin) {
				if (oWin.focus) oWin.focus();
				return false;
			}
			oWin = null;
			return true;
		}
	},
	/*
	addEvent function from http://www.quirksmode.org/blog/archives/2005/10/_and_the_winner_1.html
	*/
	addEvent: function(obj, type, fn) {
		if (obj.addEventListener)
			obj.addEventListener(type, fn, false);
		else if (obj.attachEvent) {
			obj["e"+type+fn] = fn;
			obj[type+fn] = function() {obj["e"+type+fn]( window.event );}
			obj.attachEvent("on"+type, obj[type+fn]);
		}
	}
};
JSTarget.addEvent(window, 'load', function(){JSTarget.init("rel","external","");});


var quote = new Array();

quote[0] = new Array();
quote[0][0] = "Camp Creative Group's active determination to achieve the best results for all of my companies has done so much for our bottom lines. They are incredibly creative and do twice the work of other designers I have worked with in half the time - all the while keeping their prices reasonable! They have been with me through the creation of three very different companies and have shown absolute genius with all. They have done everything from designing garment labels to perfecting the layout of our catalogs and of course our websites. They are absolutely fabulous and I could not have done it without them...for real! Don’t think twice...they are the best!";
quote[0][1] = "Crista Makdouli";
quote[0][2] = "Dallas, TX";

quote[1] = new Array();
quote[1][0] = "I am thrilled with the work that Camp Creative Group has provided for my company. Time and again, the designer has successfully turned my concepts into reality. I will continue to recommend Camp Creative Group to anyone in need of professional and creative web solutions.";
quote[1][1] = "Kimberly Werner";
quote[1][2] = "Pittsburgh, PA";

quote[2] = new Array();
quote[2][0] = "I wanted to thank you so much for the site you designed for me. Not only did I love the creative aspect of working with you, but the level of professionalism with which you handled my company as a client was outstanding. Having been just starting out when I found Camp Creative Group, I had the inconvenience of working with many dishonest and slow moving people - you on the other hand worked efficiently, creatively and were so honest with me every step of the way. You not only got the job done, but you got an amazing job done while being such a total pleasure to work with.<br /><br />For making a very stressful time so much more pleasant and for being so honest and kind I thank you - job well done!";
quote[2][1] = "Lauren B. Mandel";
quote[2][2] = "New York City, NY";

quote[3] = new Array();
quote[3][0] = "We have one of the best looking logos and websites in our industry! Take a look at our logo and see for yourself. Camp Creative Group captured our essence of creativity and drama and made it appeal to our target clientele. She took some of our CRAZY ideas and made them work! What I appreciate most about working with Camp Creative Group is that they allowed us to learn during the process. We were difficult clients but were never treated as such. Our logo and website sells our services for us!";
quote[3][1] = "Carina Gonzalez";
quote[3][2] = "Dallas, TX";

quote[4] = new Array();
quote[4][0] = "Camp Creative Group has helped elevate our company to the next level by giving us a brand image of a top performance company. This gave us the credibility and ability to go after larger contracts with confidence. We have used many design groups before, but CCG combines their creative talent with the best of the best technology and most importantly, keeps up with the latest trends and techniques in design and functionality. Having them create our brand image and build our websites have given us the cutting advantage and it has made all the difference.";
quote[4][1] = "Sharon Chandiramani";
quote[4][2] = "Dallas, TX";

quote[5] = new Array();
quote[5][0] = "The designers at CCG have fantastic instincts for creating eye-catching visuals, and they are versatile enough to design whimsical, modern graphics or a clean, professional look. I have worked with them several times, and on every occasion, they were a pleasure to talk to and always incorporated my input quickly and astutely. I would recommend them with absolutely no hesitation.";
quote[5][1] = "Mike Schmid";
quote[5][2] = "Los Angeles, CA";

quote[6] = new Array();
quote[6][0] = "Being a US company that focuses on the Middle East and North Africa, our website is the face of the company. Camp Creative Group exceeded our expectations in every aspect including our logo, brand identity and overall website design. Sarah took our vision as her inspiration for the design of our website. We are very confident that our website is a true representation of our vision.<br /><br />I will definitely use Camp Creative Group for all our future projects.";
quote[6][1] = "Tarek Makdouli";
quote[6][2] = "Dallas, TX";

quote[7] = new Array();
quote[7][0] = "Camp Creative Group has assisted my company with the development and creation of the Lemon Loves Lime website since its inception. Their creative skills in website development have provided my customers a truly unique and interactive experience. Their graphic work and layout designs are beautiful. I feel their expertise has helped my companies image to remain strong, flourish and grow. CCG's commitment to providing prompt, professional, reliable service is a true asset in today's busy business environment. It has truly been a pleasure working with them over the past two years.";
quote[7][1] = "Joy Cha";
quote[7][2] = "Shaumburg, IL";

var random = Math.floor(Math.random()*quote.length);

					document.write("<p>" + quote[random][0] + "</p>");
					document.write("<p class='name'>" + quote[random][1] + "</p>");
					document.write("<p class='loc'>" + quote[random][2] + "</p>");
