$(document).ready(function() {
	if ($.cookies.test()) {
		$('#nocookie').hide();
	}
	$('#nojavascript').hide();
  	$(window).keydown(function(event){
		if(event.keyCode == 13) {
		  if (event.target.type != 'textarea') {
			  event.preventDefault();
			  return false;
		  }
		}
	});
	$('#logo').click(function() {
		window.location = "/";
	});
	var curpage = location.pathname.substr(1).split('/',2)[0] || '';
	if (curpage) {
		$('a[href^="/' + curpage + '"]').parent().addClass('active');
	} else {
		$('a[href="/"]').parent().addClass('active');
	}
});

