/**
 * General functions and animations
 */


$(document).ready(function() {
	// external link handler
	$("a[rel='external']").click(function(e) {
		e.preventDefault();
		window.open($(this).attr('href'));
	});

	
	// Toggle 'search' for search input query
	$('#mini_search input#query').focus(function() {
		if ($(this).val() == $(this).attr('data-default_value')) {
			$(this).val('');
		}
	}).blur(function() {
		if ($(this).val() == '') {
			$(this).val($(this).attr('data-default_value'));
		}
	});
});

function copy_previous_response(question_id){
	$('#question_'+question_id).val($('#previous_question_'+question_id).html())
}
