/* -------------------------------------------------------
	
					JavaScript for brettchaney.com
	
	Created: 		9th May 2010
	Author: 		Brett Chaney
	Website: 		http://www.brettchaney.com 
	
------------------------------------------------------- */

if ((navigator.userAgent.indexOf('iPhone') != -1) ||
		(navigator.userAgent.indexOf('iPod') != -1)) {
		document.location = "http://www.brettchaney.com/mobile";
}

$(document).ready(function(){		
	$("#top").hide();
	$(window).scroll(function() { 
		if($(window).scrollTop() > 0) {
			$("#top").fadeIn("slow");
		  } else {
			$("#top").fadeOut("slow");
		}
	});	
	$("#top a").click(function() {
		$('html,body').animate({scrollTop:0}, 400);	
		return false;
	});
});
