$(document).ready(function(){

	var prefaceHeight =  $('#tpl-layout-homepage').children('P:first').height();
	$('#tpl-layout-homepage').height(prefaceHeight);
	
	$('#preface-switcher').show();
	$('#preface-switcher').toggle(function() {
		$(this).html('Read less &hellip;');
		$('#tpl-layout-homepage').css('height', 'auto');
	}, function() {
		$(this).html('Read more &hellip;');
		var prefaceHeight =  $('#tpl-layout-homepage').children('P:first').height();
		$('#tpl-layout-homepage').height(prefaceHeight);
	});
	
	$('#SearchForm_SearchForm_Search').focus(function() {
		if ($(this).val() == 'Search ams-ix.net')
			$(this).val('');
	})
	$('#SearchForm_SearchForm_Search').blur(function() {
		if ($(this).val() == '')
			$(this).val('Search ams-ix.net');
		if ($(this).val() == ' ')
			$(this).val('Search ams-ix.net');
	})
   
	// $('#memberlist TR:odd').addClass('odd');
   
});
 

