/* Author: Marshall Bock

*/

$(document).ready(function() {
	
/*
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
	    if (document.cookie.indexOf("iphone_redirect=false") == -1) {
			window.addEventListener('load', function() {
			    setTimeout(scrollTo, 0, 0, 1);
			}, false);
	    }
	}
*/

	/* TipTip */
	
	$(function(){
		$(".tip").tipTip({maxWidth: "auto", edgeOffset: 2, delay: 500});
	});

	/* FancyBox */
	
	$(".fancy").fancybox({
		'overlayShow'		:	true,
		'overlayColor'		:	'#000',
		'overlayOpacity'	:	0.5,
		'showCloseButton'	:	false,
		'hideOnContentClick':	true,
		'centerOnScroll'	:	true,
		'titleShow'			:	false
	});
	
	$(".photo .image a").fancybox({
		'overlayShow'		:	true,
		'overlayColor'		:	'#000',
		'overlayOpacity'	:	0.5,
		'showCloseButton'	:	false,
		'hideOnContentClick':	true,
		'centerOnScroll'	:	true,
		'titleShow'			:	false
	});
	
	/* Back to Top */
		
 	$('.backtotop').click(function(){
		$('html, body').animate({scrollTop: 0}, 500);		
	});
	
});
























