$(document).ready(function(){

<!-- Open links in new window -->
$('.post p a[href^="http://"]')
  .attr("target", "_blank");
  
$('.aktt_tweets a[href^="http://"]')
  .attr("target", "_blank");

<!-- Show Comment Form on click and change button text -->
$("#show_comment_form").click(function(){
$("#commentform").toggle();
$(this).text($(this).text() == 'Show' ? 'Hide' : 'Show');});
<!-- Validate Forms Before submit-->
$("#commentform").validate();

        $("#emailform").validate({
            submitHandler: function(form) {
                jQuery(form).ajaxSubmit({
                    target: ".thank_you",
                });
				$("#emailform").hide();
				$(".thank_you").show();
            }
		});
});

