/* Script by Jakob Aungiers - 2011 */
$(document).ready(function(){
	$('*#note').hide();
	$('*#editNote').hide();
	$('#opaqueBG').hide();
	$('#preLoader').hide();
	$('#largeImage').hide();
	$('#search_container_students').hide();
	$('div#faqA').hide();
	
	$('#notification').delay(1500);
	$('#notification').slideUp(1000,  'easeOutQuad');

	//Search Container
	$('a.students').click(function() {
		$('#search_container_students').fadeIn(500);
	});
	
	$('a.pro').click(function() {
		$('#search_container_students').fadeOut(500);
	});
	
	//Image Gallery
	$('#opaqueBG').click(function() {
		$('#largeImage').hide();
		$('#opaqueBG').hide();
	});
	
	$('.exit').click(function() {
		$('#largeImage').hide();
		$('#opaqueBG').hide();
	});
	
	//FAQ Page
	$('span#faqQ').click(function() {
		var cl = $(this).attr('class');
		$("div." + cl).slideToggle(250);
	});
});
