//Jquery javascript for SW dept website

$(document).ready(function(){
	$('#calendar_icons').hide();
	
	//close button
	$('#close').click(function(){
		$('#calendar_icons, #calendar_icons_inner, #close, #google_calendar').fadeOut(1000);
		$('.calendar_picture').animate({height: "401px"}, 2000 );
		$('.calendar_picture .text').fadeIn();
	});
	
	//show second page (calendar icons)
  $('#calendar_link, #calendar_link a').click(function(){
		$('.calendar_picture .text').fadeOut();
	  $('#calendar_icons').fadeIn('slow');
		$('#calendar_icons_inner, #close').fadeIn('slow');
		return false;
	});
	
	//show third page (google calendar embed)
	$('#calendar_icons_inner a').click(function(){
		$.get($(this).attr('href').replace('current_events_calendar.asp', 'includes/google_calendar.asp'), function(data){
			$('#google_calendar').attr('src', data);
		});

		$('.calendar_picture').animate({height: "670px"}, 2000 );
		$('#calendar_icons_inner').fadeOut();
		$('#google_calendar').fadeIn(3000);
    
	  return false;


	});
	

	
});  //$(document).ready()