$(document).ready(function() {
	
	//Initialize the Menu:
	startMenu();
	
	// applies class "oneLine" to the list item if text line is 1:
	$("ul#rightCTAs li div").each(function() {
//alert(this.clientHeight);
		//if (this.clientHeight < 20) {
		//	this.parentNode.className += " oneLine";
		//};
	});
	
});
