$(document).ready(function() {
	
	/**
	 *  HOMEPAGE
	 * --------------------------------------------------------- */
	var iHomepage = $('.homepage-entry').length;
	$('.homepage-entry').each(function(i) {
		if (i >= 5)
		{
			$(this).hide();
		}
	});
	
	$('.homepage-next').click(function() {
		$('.homepage-entry').hide();
		$('.homepage-entry').each(function(i) {
			if (i >= 5)
			{
				$(this).show();
			}
		});
		
	});
	
	$('.homepage-prev').click(function() {
		$('.homepage-entry').hide();
		$('.homepage-entry').each(function(i) {
			if (i < 5)
			{
				$(this).show();
			}
		});
		
	});
	
	/**
	 *  BANNER
	 * --------------------------------------------------------- */
	$('#navigation').mouseover(function() {
		$('#banner-dots').stop().fadeTo(150, 1);
	}).mouseout(function() {
		$('#banner-dots').stop().fadeTo(800, 0);
	})
	
	
	/**
	 *  CONTACT FORM
	 * --------------------------------------------------------- */
	var arOptions = Array(
					"General Inquiry",
					"Programs: Sketch & Believe",
					"Programs: Hoop 2 Hope",
					"Programs: Seeds of Hope Day Camp",
					"Programs: Youth Outreach",
					"Programs: Blueprints",
					"Programs: Developing",
					"Programs: Jane-Finch Community Development",
					"Programs: Roots Flemingdon Park Program",
					"Partnerships:  Straight Talk",
					"Partnerships:  WAVE",
					"Partnerships: Jane-Finch Emmanuel",
					"Partnerships: Don Mills-Finch Immanuel",
					"Partnerships: Inquiry",
					"Join Our Team: Volunteer",
					"Join Our Team: Staff",
					"Join Our Team: Internships",
					"Join Our Team: Partner Financially",
					"Join Our Team: Partner in Prayer"
		);
	html = "";
	for (i = 0; i < arOptions.length; i++)
	{
		html += "<option>"+ arOptions[i] +"</option>";
	}
	$('input[name="zcmail[subject]"]').after('<select name="zcmail[subject]" class="zcmail_text">'+ html +'</select>').remove();
	
});