$(document).ready(function() {

	$('#toggleBtn').click(function() {
    $('#hidebox').slideToggle(400);
    return false;
	  });

    $('a.newWindow').click(function(){
    window.open(this.href);
    return false;

	});

});

