window.addEvent('domready', function() {
	$$('.nav-item').each(function(el) {
		var sub = el.getElement('ul');
		if(sub)
		{
			el.getElement('a').addClass('has-sub');
			sub.setStyle('opacity', '0');
			el.addEvents({
				mouseenter: function(){
					sub.setStyle('display', 'block').morph({
						'opacity': 1
					});
				},
				mouseleave: function(){
					sub.setStyle('display', 'none').morph({
						'opacity': 0
					});
				}
			});
		}
	});

if (document.getElementById('quote_rotate')){
	var wcs_text = [];
	var wcs_random = $random(0, 7);
	wcs_text[0] = "<blockquote>&hellip;the word \"can\'t\" does not exist in Will\'s vocabulary <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Robin Katz<span class=\"smallcaps\" style=\"display: block;\">Robin Katz Vintage Jewels<\/span><\/p>";
	wcs_text[1] = "<blockquote>His work is superior and he is a joy<br \/>to work with\! <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Lois Inguanta<span class=\"smallcaps\" style=\"display: block;\">VAI<\/span><\/p>";
	wcs_text[2] = "<blockquote>\&hellip; unfailingly focused and insightful, and often brilliant <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Madge McKeithen<span class=\"smallcaps\" style=\"display: block;\">Author<\/span><\/p>";
	wcs_text[3] = "<blockquote>\&hellip; more than half of our new customers now come from our Website <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Dave Kram<span class=\"smallcaps\" style=\"display: block;\">Tanner Bolt \& Nut Corporation<\/span><\/p>";
	wcs_text[4] = "<blockquote>You over\-delivered on time\&mdash;that was<br \/>a great experience <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Nick Simard<span class=\"smallcaps\" style=\"display: block;\">Financial Solutions, Inc\.<\/span><\/p>";
	wcs_text[5] = "<blockquote>Will and his group do phenomenal work <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Doug Rosen<span class=\"smallcaps\" style=\"display: block;\">Hospitality Career Network<\/span><\/p>";
	wcs_text[6] = "<blockquote>I have already begun recommending CommonMind<br \/>to people <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Dr\. Debbie Magids<span class=\"smallcaps\" style=\"display: block;\">Author\/Psychologist<\/span><\/p>";
	wcs_text[7] = "<blockquote>\&hellip; my conversion rate went up by 49% and my costs have decreased <a href=\"\/what-clients-say\/\">&hellip; more<\/a><\/blockquote><p>Maria Rybarczyk Williams<span class=\"smallcaps\" style=\"display: block;\">PuriTeam<\/span><\/p>";
        $('quote_rotate').set({html: wcs_text[wcs_random]});
}

});
window.addEvent('load',function(){
		$('topnav').setStyle('visibility','visible');
});
