$(document).ready(function() 
{
	// fill out the offsetfield in the form and submit the form
	$('a.pagelink').click(function(evt){
		var linkname = evt.target.name;
		var offset = linkname.substr(8, linkname.length - 1);
		
		$("#bgPopup").css({
			"opacity": "0.7"
		});
		$("#bgPopup").fadeIn("medium");
		$("#filterform input[name=offset]").val(offset);
		$("#filterform").submit();
		return false;
	});
	
	$('.filtermenu').change(function(){
		
		$("#bgPopup").css({
			"opacity": "0.7"
		});
		$("#bgPopup").fadeIn("medium");
		$("#filterform input[name=offset]").val('');
		$("#filterform input[name=str]").val('');
		$("#filterform input[name=cmd]").val('');
		$("#filterform input[name=searchstr]").val('');
		$("#filterform").submit();
	});
	
	$('.sendsearchdata').click(function(){
		
		$("#bgPopup").css({
			"opacity": "0.7"
		});
		$("#bgPopup").fadeIn("medium");
		$("#filterform input[name=mode]").val('deltaDay');
		$("#filterform input[name=startdate]").val('');
		$("#filterform input[name=enddate]").val('');
		$("#filterform input[name=offset]").val('');
		$("#filterform input[name=cmd]").val('search');
		$("#filterform").submit();
	});
});
