var gallery = {
	makeGallery: function() {
		$(".thumb").fancybox({
			'overlayShow':	true,
            'zoomSpeedIn': 300,
            'zoomSpeedOut': 300
		});
        $(".video_thumb").fancybox({
			'overlayShow':	true,
            'zoomSpeedIn': 300,
            'zoomSpeedOut': 300,
            'frameWidth': 480,
            'frameHeight': 360
		});
        $("#video_thumb_480_279").fancybox({
			'overlayShow':	true,
            'zoomSpeedIn': 300,
            'zoomSpeedOut': 300,
            'frameWidth': 480,
            'frameHeight': 279
		});
	},
	init: function(){
		this.makeGallery();
	}
};

$(document).ready(function() {
	gallery.init();	
	$(".subNavButton").click(function(){
	    var toggleCont = $(this).parent().next('.toggleContainer');
		if(toggleCont.is(':hidden')) {
			toggleCont.slideDown('normal', function(){
			    var targetOffset = $(this).prev('.subNavGallery').offset().top;
				//var targetHeight = toggleCont.outerHeight();
				//var scrollDist = targetOffset - targetHeight + 15;
				var docHeight = $(document).height();
				var screenHeight = $(window).height();
				if (docHeight > screenHeight) {
					$('html,body').animate({scrollTop: targetOffset}, 1500);
				}										
			});
		}
		else {
			toggleCont.slideUp('normal');
			var docHeight = $(document).height();
			var screenHeight = $(window).height();
			if (docHeight > screenHeight) {
				$('html,body').animate({scrollTop: 0}, 1500);
			}
		}
		return false;
	});
});
