$(document).ready(function() {	
	$(".backtotop").click(function(e) {
		e.preventDefault();
		$("html, body").animate({
			scrollTop: $("a[name=top]").offset().top
		}, 400);
	});
	
	$("#search").focus(function() {
		$(this).val("");
	});
	
	$("#mag_submit").click(function(e) {
		$("#search_form").submit();
		
		e.preventDefault();
	});
});
