/****  LISTENERS  ****/
$zt(function() {
    //rateables
	if($('form.rateabledisplay').length > 0){
    	$('form.rateabledisplay').rateabledisplay();
	}

    $('.carousel').jcarousel({
        scroll: 1,
        visible: 1,
        auto: 5,
        wrap: 'last',
        buttonNextHTML: '<div class="next"><a href="#" onclick="return false;"><img src="/media/images/carousel_next.gif" alt="next" /></a></div>',
        buttonPrevHTML: '<div class="previous"><a href="#" onclick="return false;"><img src="/media/images/carousel_prev.gif" alt="next" /></a></div>'
    });

});

$(document).ready(function(){
	if(($('#spolists_owner_box').length > 0) && ($('#more-info-button').length > 0)){
		$('#spolists_owner_box').hide();
		$('#more-info-button').click(function(){
			$(this).hide()
			$('#spolists_owner_box').slideDown();
		})
	}
 });