
$(document).ready(function() {
	
	$('.backtotop').click(function(){ 
		$('html, body').animate({scrollTop:0}, 'slow'); 
		return false; 
		});
	
	$('a[rel="external"]').click(function(){ 
		window.open( $(this).attr('href') );
		return false;
		});
	
$("form[id!=kereses-form] :input:visible:enabled:first").focus();
	
});






