 $(document).ready(function(){
		
		//Hide all sections up state on start
		$(".section-up").hide();
		$('.flash-scroller').hide();		
			
		$('.section-up').addClass('addSectionNegativeMargin');
		
		$('.link-top').addClass('top-mini-box');
		$('.link-bottom').addClass('bottom-mini-box');

		$(".section-down a").click(function(event){			
			if ( $(this).parents().children('div .section-up').is(':hidden') ) {
				//Detects if any other section-up & logos are visable and shows them
				$('.section-up:visible').hide('slow');
				$('.section-logo:hidden').show('slow');
				//Detects if any flash files are visable and then hides them
				$('.flash-scroller:visible').hide();
				//Hides intro paragraph
				$('.intro-wrapper:visible').hide();
				//Brings the section down from the top
				$('.content-section').addClass('addSectionMargin');
				//Shows up state and hides logo
        $(this).parents().children('div .section-up').show('slow');
				$(this).children('div .section-logo').hide('slow');

				if ( $(this).parents().is('#aci-pub') ) {
					$('#aci-flash').show();
				} 
				if ( $(this).parents().is('#aoa-pub') ) {
					$('#aoa-flash').show();
				}
				if ( $(this).parents().is('#tfwa-pub') ) {
					$('#tfwa-flash').show();
				}
				if ( $(this).parents().is('#tsn-pub') ) {
					$('#tsn-flash').show();
				}
				if ( $(this).parents().is('#checkin-pub') ) {
					$('#checkin-flash').show();
				}
			}
			else {
        $(this).parents().children('div .section-up').hide('slow');
				$(this).children('div .section-logo').show('slow');	
				$('.intro-wrapper:hidden').show();
				$('.content-section').removeClass('addSectionMargin');	
				if ( $('.flash-scroller').is(':visable') ) {
						$('.flash-scroller').hide();					
				}
			}
			return false;
		});

 });
 
 