// functions.js

$(function(){
	
	// Archive combo
	$('select.archives').bind('change', function(){ document.location.href = this.value; });
	if($.browser.msie)
		$('#header').bind('click', function(){ document.location.href = $('#header h1 a').attr('href'); });
	
});
