// -- CUSTOM FUNCTIONS AND EFFECTS --

$(document).ready(function(){

	/* Change the HTML5 data-rel attribute to rel */

	$('a[data-rel]').each(function() {
		$(this).attr('rel', $(this).data('rel'));
	});

	/* Scroll to top */

	$('.top_btn').hide();
	$(window).scroll(function () {
		if( $(this).scrollTop() > 100 ) {
			$('.top_btn').fadeIn(300);
		}
		else {
			$('.top_btn').fadeOut(300);
		}
	});

	$('.top_btn a').click(function(){
		$('html, body').animate({scrollTop:0}, 500 );
		return false;
	});
})
