$(function() {
	$(document).pngFix();
	
	$('#query_input').focus(function(){
		if (this.value == 'search...') { this.value = ''; }
	});
	$('#query_input').blur(function(){
		if (this.value == '') { this.value = 'search...'; }
	});
	
	var params = 'width=800,height=600,resizable=1,scrollbars=1,location=1,menubar=1';
	$('a[rel*=popup_link]').click(function(e){
		window.open($(this).attr('href'), 'popWin', params);
        return false;
	});
	$('a[target*=_blank]').click(function(e){
		window.open($(this).attr('href'), 'popWin', params);
        return false;
	});
	$('#ask_question_form').initQuestionForm();
});





