$(document).ready(
	function() {
 
		//$('form.search input.text').defaultValue();

		$("#menu_main li.dropdown a.top").click(
			function() {
				$(this).parent().addClass("active");
				return false;
			}
		);

		$("#menu_main ul li").mouseleave(
			function() {$(this).removeClass("active");}
		);
		
		$('ul.list_nav').listnav({ 
			includeAll: false, 
			includeOther: false, 
			flagDisabled: true, 
			noMatchText: 'No entries were found. Please select another letter.', 
			showCounts: false
		});
		
		$('#article_options li.facebook a').click(
			function() {
				window.open(this.href,'Share','width=1000,height=600,scrollbars=auto');
				return false;
			}
		);

		$('#article_options li.twitter a').click(
			function() {
				window.open(this.href,'Share','width=600,height=300,scrollbars=auto');
				return false;
			}
		);

	}
);
