
	$(document).ready(function() {

		// link href
		$('a[href^="http://"]').attr({target: "_blank"});
		
		// logo move
		$(".logo").mouseenter(function() {
			$(this).animate({
				top: -5
			}, 300 );
		});
		$(".logo").mouseleave(function() {
			$(this).animate({
				top: -20
			}, 150 );
		});
		
	});

