|
(function() {
var po = document.createElement('span style=visibility:hidden'); po.type = 'text/javaspan style=visibility:hidden'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('span style=visibility:hidden')[0]; s.parentNode.insertBefore(po, s);
})();
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto({
animation_speed: 'normal', /* fast/slow/normal */
slideshow: 5000, /* false OR interval time in ms */
autoplay_slideshow: false, /* true/false */
opacity: 0.80, /* Value between 0 and 1 */
show_title: true, /* true/false */
allow_resize: true, /* Resize the photos bigger than viewport. true/false */
default_width: 500,
default_height: 344,
counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
theme: 'pp_default', /* light_rounded / dark_rounded / light_square / dark_square / facebook */
horizontal_padding: 20, /* The padding on each side of the picture */
hideflash: false, /* Hides all the flash object on a page, set to TRUE if flash appears over prettyPhoto */
wmode: 'opaque', /* Set the flash wmode attribute */
autoplay: true, /* Automatically start videos: True/False */
modal: false, /* If set to true, only the close button will close the window */
deeplinking: true, /* Allow prettyPhoto to update the url to enable deeplinking. */
overlay_gallery: false, /* If set to true, a gallery will overlay the fullscreen image on mouse over */
keyboard_shortcuts: true, /* Set to false if you open forms inside prettyPhoto */
changepicturecallback: function(){}, /* Called everytime an item is shown/changed */
callback: function(){} /* Called when prettyPhoto is closed */
});
});
November 26, 2012 | 04:15 PM 10 Questions with Steven Cook
Cook is a senior Basketball player for New Trier. The forward is committed to Princeton University.
Do you have any pre-game rituals or superstitions?
Usually the big thing is music. During my pregame, I have to listen to the right kind of music to get me in the right mood, some rock or hip-hop, anything with a good beat.
Who is your favorite basketball player?
That's a tough one. I actually really like Damian Lillard [PG-Portland Trail Blazers]. He's a great player, a great leader. he can do so many different things for his team. And he's not a huge, well-known guy.
What kind of music are you listening to?
Mainly popular rap, like Kanye or J. Cole. I also like early '90s rap, like A Tribe Called Quest. Anything with a good beat.
If you played another sport for New Trier, what would it be?
Probably football. I have a lot of friends on the team. I played when I was middle school at North Shore Country Day; I played wide receiver. It would just be a lot of fun to play that game with friends.
What is your favorite thing to do off the court?
Off the court, I mainly watch basketball, a lot of college basketball now that it has started, some NBA — any basketball that's on TV. I go see movies and just hang out with friends.
What most excites you about next year and Princeton?
I'm really excited about the opportunity to compete as an athlete at Princeton. It's a place not completely focused on athletics so you can experience it like a normal student.
What do you want to study?
I'm really undecided. I've gotten advice from a lot of people and what I hear is take classes that interest you early and see what you like. ... I'm open to whatever comes my way.
If you won the lottery, what would be your first purchase?
I would have to say court-side Bulls' season tickets. I got to a lot of games and I'm always looking court side and wishing I was there.
What is something most people don't know about you?
Probably that athleticism is not a huge thing in my family. My younger brother [Brian, freshman at NSCD] is an actor, and my older brother [John, University of Virginia] played football, but athletics are really not his thing. A lot of people at New Trier come from athletic families.
How is the team looking this year and what do you expect?
After the first game [62-39 win over Harper], I'm really optimistic. Me and Reid [Berman] and Austin Angel and some other seniors have experience and we have a lot of younger guys with talent. Looking at our schedule, I see a lot of teams we can beat, hopefully get a good record and make a run in the playoffs.
Interview by Editor Joe Coughlin
To continue reading and view more photos, login or sign up for Current Plus:
Tags: Basketball, New Trier HS
-
$(function() {
$(".submit222").click(function() {
var title = $("#title").val();
var name = $("#name").val();
var email = $("#email").val();
var city = $("#city").val();
var comment = $("#comment").val();
var entra1 = $("#entra1").val();
var entra2 = $("#entra2").val();
var myvote = $("#myvote").val();
var starratingitemlpid = $("#starratingitemlpid").val();
var starratingtype = $("#starratingtype").val();
var recaptchafield = $("#recaptcha_challenge_field").val();
var recaptchares = $("#recaptcha_response_field").val();
var anchallenge = $("#anchallenge").val();
var anrandomcha = $("#anrandomcha").val();
var animalname = $("#animalname").val();
var LPABSID = $("#LPABSID").val();
var Feedbacktype = $("#Feedbacktype").val();
var LPDID = $("#LPDID").val();
var dataString = 'name='+ name + '&email=' + email + '&Body=' + comment + '&entra1=' + entra1 + '&entra2=' + entra2 + '&title=' + title + '&starratingtype=' + starratingtype + '&starratingitemlpid=' + starratingitemlpid + '&myvote=' + myvote + '&city=' + city + '&LPDID=' + LPDID + '&Feedbacktype=' + Feedbacktype + '&LPABSID=' + LPABSID + '&recaptchafield=' + recaptchafield + '&anchallenge=' + anchallenge + '&anrandomcha=' + anrandomcha + '&animalname=' + animalname + '&recaptchares=' + recaptchares;
dataString = dataString.replace(/\n/g, "
");
if(comment=='')
{
alert('The comment is a required field.');
}
else if(name=='' || name=='Your Name')
{
alert('Your name is a required field.');
}
else if(recaptchares=='')
{
alert('You must complete the verification.');
}
else
{
$("#flash").show();
$("#flash").fadeIn(400).html(' Loading Comment... ');
$.ajax({
type: "POST",
url: "commentajax.lasso",
data: dataString,
cache: false,
success: function(html){
$("ol#update").append(html);
$("ol#update li:last").fadeIn("slow");
document.getElementById('email').value='';
document.getElementById('name').value='';
document.getElementById('comment').value='';
document.getElementById('entra1').value='';
document.getElementById('entra2').value='';
document.getElementById('title').value='';
document.getElementById('city').value='';
document.getElementById('myvote').value='';
document.getElementById('recaptcha_challenge_field').value='';
document.getElementById('recaptcha_response_field').value='';
document.getElementById('anchallenge').value='';
document.getElementById('anrandomcha').value='';
document.getElementById('animalname').value='';
$("#name").focus();
$("#flash").hide();
}
});
}
return false;
});
});
function loadXMLlpcomments(url)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET",url,false);
xmlhttp.send(null);
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET",url,false);
// Do not send null for ActiveX
xmlhttp.send();
}
document.getElementById('commentajres').innerHTML=xmlhttp.responseText;
}
// perform JavaScript after the document is span style=visibility:hiddenable.
$(function() {
// setup ul.tabs to work as tabs for each div directly under div.panes
$("ul.css-tabs-lprel").tabs("ul.css-panes-lprel > li");
});
| |
|
|
|
|