$(document).ready(function(){
	$('#search-form a').click(function(e) {
		e.preventDefault();
		$('#search-form').submit();	
	});
	
	$('#search-form input').focusin(function(e) {
		if($(this).val() == search_text)
			$(this).val('');	
	}).focusout(function(e) {
		if($(this).val() == '')
			$(this).val(search_text);
	});
	
	$('#comment-link').click(function(e) {
		e.preventDefault();
	
		$('#comments').toggle();

		if($('#comments').is(':visible'))
			$(this).text(comment_text +' -');
		else
			$(this).text(comment_text +' +');
	});
});
