$(document).ready(function(){

//$('#buttonBox').slideToggle(100);
//$('#buttonBox').slideToggle(1000);



// PAGE LOAD EFFECTS
	$(window).load(function(){
		$('#loading').slideToggle(500);
		$('#wrapper').slideToggle(1000, function(){
			$('#chalkboardback').animate(
			{top: $(this).position().top - 297},
			{duration: 1250, easing: 'easeOutElastic', queue: false}
			);
		});
					
		$('.photos').cycle({
			fx: 'shuffle',
			timeout: 0,
			next: '.photos',
			speed: 500
		});			
	});

$(".popup-link").popup({
    width: 640,
    height: 560
});


// TOP NAVIGATION HOVER EFFECT
$('#topnav img').hover(function() {

 $(this)
 .stop(true)
 .animate(
 {opacity: '0'},
 {duration: 500, easing: 'easeOutCirc'}
 )},function() {
 $(this)
 .stop(true)
 .animate(
 {opacity:'100'},
 {duration: 500, easing: 'easeInCirc'}
 );
 
});



//END DOC READY
});
