$(document).ready(function(){

	$(".toggleContent h4").click(function() {
		
		$(this).next(".toggleContentInner").slideToggle('fast');
		
		$(this).toggleClass("active");
	});
	
	$('a.test-your-judgement').click(function() {
		
        var newwindow = window.open($(this).attr('href'),'','height=650,width=825');
		if (window.focus) {
			newwindow.focus();
		}
        return false;
	});
	
});

