$(document).ready(function() {
	
	// copyright
	var date = new Date();
	var _year = date.getFullYear();
	$("#copy").html("Copyright "+ _year +" Workbit Corporation");
	
	// smooth scroller
/*	$("a[href^=#]").click(function() {
		var hash = this.hash;
		if(!hash || hash == "#")
			return false;
		$($.browser.safari ? 'body' : 'html')
			.animate({scrollTop: $(hash).offset().top}, 200, "swing");
		return false;
	});
*/	
});