$(window).load(function() {

	// if a mobile browser - skip to homepage
	if (navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i)) {
	 	document.location = "/home";
	}
	

	setInterval(function() {
	   $('a#site_link').animate({ top: '-=2' }, 500).animate({ top: '+=2' }, 1000);
	}, 1500);
	
	setInterval(function() {
	   $('a#tour_link').animate({ top: '-=3' }, 500).animate({ top: '+=3' }, 1000);
	}, 1500);

});
