// JavaScript Document
// This fucntion references <div> tags on the CUNYfirst Home Page
/*
$(function()	{
	$('#click-bullet1').mouseover(function() {
		$('#home-bullet1').show('slow');
		$('#home-bullet2').hide('slow');
		$('#home-bullet3').hide('slow');
		$('#home-bullet4').hide('slow');
		$('#home-bullet5').hide('slow');
		$('#home-bullet6').hide('slow');
	});
	$('#click-bullet2').click(function() {
		$('#home-bullet1').hide('slow');
		$('#home-bullet2').show('slow');
		$('#home-bullet3').hide('slow');
		$('#home-bullet4').hide('slow');
		$('#home-bullet5').hide('slow');
		$('#home-bullet6').hide('slow');
	});
	$('#click-bullet3').click(function() {
		$('#home-bullet1').hide('slow');
		$('#home-bullet2').hide('slow');
		$('#home-bullet3').show('slow');
		$('#home-bullet4').hide('slow');
		$('#home-bullet5').hide('slow');
		$('#home-bullet6').hide('slow');
	});
	$('#click-bullet4').click(function() {
		$('#home-bullet1').hide('slow');
		$('#home-bullet2').hide('slow');
		$('#home-bullet3').hide('slow');
		$('#home-bullet4').show('slow');
		$('#home-bullet5').hide('slow');
		$('#home-bullet6').hide('slow');
	});
	$('#click-bullet5').click(function() {
		$('#home-bullet1').hide('slow');
		$('#home-bullet2').hide('slow');
		$('#home-bullet3').hide('slow');
		$('#home-bullet4').hide('slow');
		$('#home-bullet5').show('slow');
		$('#home-bullet6').hide('slow');
	});
	$('#click-bullet6').click(function() {
		$('#home-bullet1').hide('slow');
		$('#home-bullet2').hide('slow');
		$('#home-bullet3').hide('slow');
		$('#home-bullet4').hide('slow');
		$('#home-bullet5').hide('slow');
		$('#home-bullet6').show('slow');
	});
});
*/
// This fucntion references <div> tags on the CUNYfirst FAQ's Page
/*
$(function()	{
	$('#click-Q1').click(function() {
		$('#FAQ-Q1').show('slow');
		$('#FAQ-Q2').hide('slow'); 
		$('#FAQ-Q3').hide('slow');
		$('#FAQ-Q4').hide('slow');
		$('#FAQ-Q5').hide('slow');
		$('#FAQ-Q6').hide('slow');
		$('#FAQ-Q7').hide('slow');
	});
	$('#click-Q2').click(function() {
		$('#FAQ-Q1').hide('slow');
		$('#FAQ-Q2').show('slow'); 
		$('#FAQ-Q3').hide('slow');
		$('#FAQ-Q4').hide('slow');
		$('#FAQ-Q5').hide('slow');
		$('#FAQ-Q6').hide('slow');
		$('#FAQ-Q7').hide('slow');
	});
	$('#click-Q3').click(function() {
		$('#FAQ-Q1').hide('slow');
		$('#FAQ-Q2').hide('slow'); 
		$('#FAQ-Q3').show('slow');
		$('#FAQ-Q4').hide('slow');
		$('#FAQ-Q5').hide('slow');
		$('#FAQ-Q6').hide('slow');
		$('#FAQ-Q7').hide('slow');
	});
	$('#click-Q4').click(function() {
		$('#FAQ-Q1').hide('slow');
		$('#FAQ-Q2').hide('slow'); 
		$('#FAQ-Q3').hide('slow');
		$('#FAQ-Q4').show('slow');
		$('#FAQ-Q5').hide('slow');
		$('#FAQ-Q6').hide('slow');
		$('#FAQ-Q7').hide('slow');
	});
	$('#click-Q5').click(function() {
		$('#FAQ-Q1').hide('slow');
		$('#FAQ-Q2').hide('slow'); 
		$('#FAQ-Q3').hide('slow');
		$('#FAQ-Q4').hide('slow');
		$('#FAQ-Q5').show('slow');
		$('#FAQ-Q6').hide('slow');
		$('#FAQ-Q7').hide('slow');
	});
	$('#click-Q6').click(function() {
		$('#FAQ-Q1').hide('slow');
		$('#FAQ-Q2').hide('slow'); 
		$('#FAQ-Q3').hide('slow');
		$('#FAQ-Q4').hide('slow');
		$('#FAQ-Q5').hide('slow');
		$('#FAQ-Q6').show('slow');
		$('#FAQ-Q7').hide('slow');
	});
	$('#click-Q7').click(function() {
		$('#FAQ-Q1').hide('slow');
		$('#FAQ-Q2').hide('slow'); 
		$('#FAQ-Q3').hide('slow');
		$('#FAQ-Q4').hide('slow');
		$('#FAQ-Q5').hide('slow');
		$('#FAQ-Q6').hide('slow');
		$('#FAQ-Q7').show('slow');
	});

});
*/
$(document).ready(function()	{
	$('#img1').fadeIn(2000);
});
$(document).ready(function()	{
	$('#img2').slideDown(2000);
});
$(document).ready(function()	{
	$('#img3').show(2500);
});
$(document).ready(function()	{
	$('#img4').show(2500);
});
