// JavaScript Document
$(document).ready(function(){
	$('a.homemsg').click(function(f){
		f.preventDefault();
		$('#home-msg').modal({containerCss:{width:500, height:475}, autoResize:true});
	});
  
  //ROLLOVER MENU FUNCTION
  $('a').mouseover(function(){
		if($(this).is("#about, #aboutlinks > .secondnavlink")){
		  $('#secondnav').show();
		  $('#aboutlinks').show();
		  $('#marker1').show();
		  $('#applylinks').hide();
		  $('#marker2').hide();
		}
		else if($(this).is("#apply, #applylinks > .secondnavlink")){
		  $('#secondnav').show();
		  $('#applylinks').show();
		  $('#marker2').show();
		  $('#aboutlinks').hide();
		  $('#marker1').hide();
		}
		else{
		  $('#secondnav').hide();
		}
  });
  
  //PHOTO GALLERY FUNCTION
  $('#picnic1 a').lightBox();
  $('#picnic2 a').lightBox();
  $('#picnic3 a').lightBox();

  //FORM RADIO BUTTON FUNCTION
  $('input').click(function(event){
		var t = event.target;
		if(t.type == 'radio'){
			if(t.value == 'student'){
				$('#schoolbox').show();
				$('#orgbox').hide();
				$('#housesbox').show();
			}else if(t.value == 'parent'){
				$('#housesbox').show();
				$('#schoolbox').hide();
				$('#orgbox').hide();
			}else if(t.value == 'org'){
				$('#orgbox').show();
				$('#housesbox').hide();
				$('#schoolbox').hide();
			}else if(t.value == 'schooladmin'){
				$('#schoolbox').show();
				$('#orgbox').hide();
				$('#housesbox').hide();
			}else if(t.value == 'other'){
				$('#schoolbox').hide();
				$('#orgbox').hide();
				$('#housesbox').hide();
			}
		}
	});

  //FAQ PAGE
   $("#accordion").accordion({header: 'span', autoHeight: false, collapsible: true, active: false});
   
   	$('a.trigger').click(function (e) {
		e.preventDefault();
		$('#basic-modal-content').modal();
	});
	
	
});
