jQuery(document).ready(function ($) {
	
	// --- Stew Room animation:
	var $current_headline = $('.commentlist li:first-child');
	var $first_headline = $current_headline;
	
	$('#comment_container').css({'overflow' : 'auto', 'height' : '290px'});
	
	
	
	$('#user_news').everyTime(6000, function(i) {
		//console.log('Timer...');
		if ( $current_headline.attr("id") == $('.commentlist li:last-child').attr("id") ) {
			$current_headline = $first_headline;
		}
		$current_headline = $current_headline.next();

		$('#comment_container').scrollTo($current_headline, 600);
		
	}, 0); 
	
	$("#s").focus(function() {
		if ($(this).val() == 'Search The Zoo Stew') {
			$(this).val('');
		}
	});
	$("#s").blur(function() {
		if ($(this).val() == '') {
			$(this).val('Search The Zoo Stew');
		}
	});	
	
	
	// --- Print Links ---
	$(".print_link").click(function() {
		print();
	});
	
});