function $id(id) {
	return document.getElementById(id);
}

function flip(id) {
	$id(id).style.display = ($id(id).style.display == 'none') ? 'block' : 'none';
}
$("a[href^=#][href!=#]").live('click',function(e){
	$('html,body').animate({'scrollTop': $($(this).attr('href')).offset().top+'px'});
	e.preventDefault();
});
$(function(){
	$('input').keydown(function(e){
		if (e.keyCode == 13) {
			$(this).parents('form').find('input[type=submit]').click();
			return false;
		}
	});
});
