/* Author: Corey Coburn, CPA Valet
*/
$(document).ready(function(){

	// Back to top button
	$('#back-to-top').click(function(e){
		$('html, body').animate({
			scrollTop: 0			
		}, 250);
		e.preventDefault();
	});
	
	// Background Images
	$.supersized({
		//Background image
		slides	:  [ { image : $('#bg-file-name').text() } ]					
	});
	
});

























