$(document).ready(function(){
	
	// Scrolling Anchors
					
	$('[href^=#]').anchorAnimate();
	
	// Contact Window
	
	$('span.contact').click(function (){
		$('[href^=#]').removeClass('active');
	    $(this).addClass('active');
		$('div#contactwindow').slideDown({
			easing: 'easeOutCubic',
			duration: 500
		});
	});
	
	$('div.close').click(function () {
		$('span.contact').removeClass('active');
		$('div#contactwindow').slideUp({
			easing: 'easeOutCubic',
			duration: 500
		});
	});
	
	$("#archive li").click(function(){
	     window.location=$(this).find("a").attr("href");
	     return false;
	});
	
	$("a[href^=http]").each(
			function(){
				if(this.href.indexOf(location.hostname) == -1) { 
				$(this).attr('target', '_blank');
			}
		});
	
});
