// Initializes User Scripts:

$(document).ready(function() {
	
	// Selects text in Search Box when focused:
	$('input.txtSearch').focus(function(){
		this.select();
	});
	
	// Initialize the Menu:
	startMenu();
		
	// Smartz Link - pop up in new window / tab:
	$('a#smartzLink').click(function() {
		window.open('http://www.smartz.com/Content-Management/default.aspx', 'smartz', '');
		return false;
	});
	
});
