$(function(){
	Date.format = 'mm/dd/yyyy';
	var today = new Date();
	var sdate = today.asString();
	$("#fromDate, #toDate").datePicker({
		clickInput:true,
		startDate:sdate
	});
	$('#fromDate').bind('dpClosed', function(e, selectedDates){
		var d = selectedDates[0];
		if (d) {
			d = new Date(d);
			$('#toDate').dpSetStartDate(d.addDays(1).asString());
		}
	});
	$('#toDate').bind('dpClosed',	function(e, selectedDates){
		var d = selectedDates[0];
		if (d) {
			d = new Date(d);
			$('#fromDate').dpSetEndDate(d.addDays(-1).asString());
		}
	});
		
	$(".events-pager a").click(function(){
	
		var qstring = $("#search-string").text();
		
		window.location = $(this).attr("href") + "?" + qstring;
		
		return false;
	});
});