/* ANIMATIONS
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */		
$(function() {
	$('.content').css({opacity: 0});
	$('.content').animate({opacity:1},600);
	$('.logo, .the-experience, .image-gallery, .cool-services, .cool-products, .asideNav .blog a, .asideNav  .links a, .asideNav  .subNav a, .blog .content a').click(function(){
		$('.contactWrap').slideUp(500);
		golink = $(this);
		$(golink).addClass('hr');
		$(".content").animate({opacity:0},200,function(){
			window.location = $(golink).attr('href');
			}
		);
		return false;
	});
});
