$(document).ready(function() {
	
	$("a[rel=external], a[rel=external nofollow]").attr("target", "_blank");
	$(".contact-email").text("info@6am.bg").attr("href","mailto:info@6am.bg");
	
	$('#content').localScroll({target:'#main'});
	
	$('#content a').live('click', function() {
		if($(this).attr('href')=='')
			return false;
		else if(this.hash!='#home') {
			var tohome = '<a href="#home" id="to-home">Go to top</a>';
			$(tohome).hide().appendTo('h1').fadeIn('slow');
			$('#logo').attr('href','#home');
		} else {
			$('#to-home').fadeOut('slow', function() {$('#to-home').remove()});
		}
		$('#content').localScroll({target:'#main'});
	});
	
});
