$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$('.info').hide();
	//Boxes appear when triggers are clicked
	$('a.Box1').click(function(){
		$('.info').hide();
		$('#Box1').toggle();
		return false;
		})
	$('a.Box2').click(function(){
		$('.info').hide();
		$('#Box2').toggle();
		return false;
	})
	$('a.Box3').click(function(){
		$('.info').hide();
		$('#Box3').toggle();
		return false;
	})
	
	
	//Highlight Selected Nav Link
	$("#nav a").each(function() { 
	if(this.href == window.location) $(this).addClass("selected"); 
	}); 

	//Slide show
	$('.fadein img:gt(0)').hide();
    setInterval(function(){
      $('.fadein :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('.fadein');}, 
      3000);
	
	//Lightbox
	$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({
			animationSpeed:'slow',
			theme:'facebook',
			showTitle: false, /* true/false */
			allowresize: true, /* true/false */
			default_width: 614,
			default_height: 380,
			slideshow:2000
			});
    $(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'fast',slideshow:10000});

});

