// Initializes User Scripts:

$(document).ready(function() {

	// Selects text in Search Box when focused:
	$('input.txtSearch').focus(function() {
		this.select();
	});

	// Footer Links - pop up in new window / tab:
	$('a#smartzLink').click(function() {
		window.open($(this).attr("href"), 'window2', '');
		return false;
	});

	pixelsilk.renderSkin('[' + '[Menu1]' + ']', function(html) {
		$('#subNavigation').html(html);
		var sections = $('#subNavigation div');
		var topElements = $('#Menu li');
		for (z = 0; z < sections.length; z++) {
			var li = topElements[z + 1];
			var lihtml = li.innerHTML;
			li.innerHTML = lihtml + sections[z].innerHTML;
		}
		$('#Menu').navMenu({
			menuWidth: 200,
			containerElement: "#theme",
			menuElement: "ul",
			rightArrow: ' »'
		});
	});

});

