$(document).ready(function(){
		$("#datepicker").datepicker({
		onSelect: function(date) {
			window.location = "collegelife_calendar.asp";
		},
		selectWeek: true,
		inline: true,
		startDate: '01/01/2000',
		firstDay: 1
		});
		
		$("textarea").click(function() {
			$(this).html("");
  			$(this).addClass("activated");
		});
		
		$('#sidepics').cycle('fade');
		
		$('.snapshots .frame_a img').rotate(-5);
		$('.snapshots .snapphoto_a img').rotate(-5);
		
		$('.snapshots .frame_b img').rotate(5);
		$('.snapshots .snapphoto_b img').rotate(5);
		
		$('.snapshots_lg .frame_a img').rotate(-5);
		$('.snapshots_lg .snapphoto_a img').rotate(-5);
		
		
		$('#photo_lg').cycle({
		fx: 'fade', speed: 1000, timeout:  5000, pause:   1, pager:  '#photonav', pagerAnchorBuilder: function(idx, slide) {
		// return selector string for existing anchor
		return '#photonav li:eq(' + idx + ') a';
		}
		});
		
		$('.eventpopup').hide();
		
		$('.hasevent div').mouseover(function() {
			$(this).next('.eventpopup').show();
		});
		
		$('.hasevent div').mouseout(function() {
			$(this).next('.eventpopup').hide();
		});
		
		$('.hasevent div').click(function() {
			$(this).next('.eventpopup').show();
		});
	
		$('.eventpopup').click(function() {
			$(this).hide();
		});	
			
		
});
