$(document).ready(function(){
	$('#give_feedback').click( function(){
		var textarea = $("#feedback textarea")
		dh=document.body.scrollHeight
		ch=document.body.clientHeight
		if(dh>ch){
			moveme=dh-ch
			window.scrollTo(0,moveme)
		}
		textarea.focus()
	})
	
	$("input#calendar").datepicker({ 
		dateFormat: 'yy-mm-dd', 
		minDate: new Date(), 
		onSelect: function(dateText, inst) {
			top.location = '/activities?start_date='+dateText
		} 
	})
})