/*
Anchor Slider by Cedric Dugas
Http://www.position-absolute.com
*/
		
$j(document).ready(function() {
	anchor.init()
});

anchor = {
	init : function()  {
		$j("a.anchor").click(function () {	
			elementClick = $j(this).attr("href")
			destination = $j(elementClick).offset().top;
			$j("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
		  	return false;
		})
	}
}