// Initializes User Scripts:

$(document).ready(function() {
	
	// Selects the text in the textboxes upon focus:
	$('input.txtNewsletterSignup').focus(function() {
		this.select();
	});
	
	//Initialize the Menu:
	startMenu();
	
	// applies class "oneLine" to the list item if text line is 1:
//	$("ul#leftCTA li div").each(function() {
//		if (this.clientHeight < 35) {
//			this.parentNode.className += " oneLine";
//		};
//	});
	
	$('a#smartzLink').click(function() {
		window.open('http://www.smartz.com/Content-Management/default.aspx', 'smartz', '');
		return false;
	});
	
});