// JavaScript Document

function loadCPYear() {
		if (document.getElementById) {
		var d = new Date();
		var curr_year = d.getFullYear();
			document.getElementById('copyrightYear').innerHTML = curr_year;
		}
	}
	
	$(document).ready(function() {
   
    /* go to top */
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
    
});

