$(function() {
	var bg = $('#discussmain').css('background-color'); 
	$('.zebra1').hover(
		function() { $(this).find('td').css('background','yellow'); }, 
		function() { $(this).find('td').css('background','#ffffff'); }
	); 
	$('.zebra0').hover(
		function() { $(this).find('td').css('background','yellow'); }, 
		function() { $(this).find('td').css('background',bg); }
	); 
	$('#prevfirstsubmit').hide(); 
	$('#previewer').click(function() {
		$.ajax({ 
			type: "POST", url: "/inc/preview.php", 
			data: "m="+$('#mtext').val()+"&ttl="+$('#ttl').val(), 
			success: function(msg) { 
				$('#prevfirstsubmit').show(); 
				$('#preview').html(msg); 
			}
		});		
	}); 
	$('#dsearchform').hide();
	$('#dsearchbutton').attr('href','#').click(function() { $('#dsearchform').slideDown(); }); 	
	$('.discusser').click(function(e) { 
		if( (!$.browser.msie && e.button == 0) || ($.browser.msie && e.button == 1) ) {
			var id = $(this).attr('rel'); 
			location.href='/discuss/?thread='+id;
		}
	});
}); 