/****************************************************************************************************************
	
	SPARTH_MAIN.JS
	JS by STPo [Christophe ANDRIEU]
	http://www.stpo.fr
	info@stpo.fr

	CopyLeft 2009
	Bisous aux pompeurs !
	
****************************************************************************************************************
	spam filter / emails
****************************************************************************************************************/

$('.email').each(function(i){
	
	var myString = $(this).html();
	
	var newString = myString.split('[AT]')[0] + '@' + myString.split('[AT]')[1].split('[DOT]')[0] + '.' + myString.split('[AT]')[1].split('[DOT]')[1];
	
	$(this).html('<a href="mailto:' + newString + '">' + newString +'</a>');
	
});

/****************************************************************************************************************
	ScrollTo standalone (sans UI \o/ ) et accessible - sauf pour IE6
****************************************************************************************************************/

if (!($.browser.msie && $.browser.version == 6)){
	
	$('#topOfThePage').bind("click", function(e){
		
		var anchor = $(this).attr('href')
		
		$("html,body").animate({ scrollTop: $(anchor).offset().top }, 1000, 'swing',function(){
		
			$(anchor).attr("tabindex","-1");
			$(anchor).focus();
			$(anchor).removeAttr("tabindex");
																										   
		});

		return false;
		
	});
}

