$(document).ready(function()
	{

	// Auto-populate form fields with their titles
			
	$('.populate').each(function(){

		var e = $(this);
		if (!e.val()) {
			e.val(e.attr('title'));
		 }
	
		e.focus(function(){
		  var e = $(this);
		  if (e.attr('title') == e.val()) {
			e.val('');
		  }
		});
		
		e.blur(function(){
		  var e = $(this);
		  if (!e.val()) {
			e.val(e.attr('title'));
		  }
		});
	});				


	// Jump menu
	$('form#monthArchive input').hide();
	
	$('form#monthArchive select').change(function()
	{
		var url = $('form#monthArchive select option:selected').val();
		window.location=url;
	});

		
	}
);
