$(function() {
	$('#slideshow').cycle({ 
		fx: 'fade', 
		speed: 3000
	});
	$(".mapframe").colorbox({iframe:true, innerWidth:600, innerHeight:600});
})
jQuery(document).ready(function($) {

	$('#playVideo').click(function() {
	var htmlStr = $('#playVideo').html();
			
    		if(htmlStr == "Play Video") {
				$('#content').animate({
					marginTop: 165			
				}, 500, function() {
				});
				
				$('#playVideo').html("Close Video");
				$('#playVideo').removeClass("playVideo1");
				$('#playVideo').addClass("playVideo2");
			} else  {
				
				$('#content').animate({
					marginTop: 0			
				}, 500, function() {
				});
		
				$('#playVideo').html("Play Video");
				$('#playVideo').removeClass("playVideo2");
				$('#playVideo').addClass("playVideo1");
			}
			
		$('#birchwoodVideo').fadeToggle('slow', function() {
			
	
	    });		
	});
});
		
