﻿/* PODS_Scroller.js Created by: Feryl Aradillos */
function pods_setup_scroller (container_i, content_i, up_i, down_i, speed_i) {
	if ($('#'+container_i) != null){
		var hdn_ht = $('#'+content_i).outerHeight() - $('#'+container_i).outerHeight();

		$('#'+up_i).click(function() {return false;});
		$('#'+down_i).click(function() {return false;});

		$('#'+down_i).hover(
			function() {
				//if (hdn_ht > 0) {$('#'+content_i).animate({ top: -hdn_ht }, Math.abs($('#'+content_i).offset().top - hdn_ht) * speed_i);}
				if (hdn_ht > 0) {$('#'+content_i).animate({ top: -hdn_ht }, speed_i);}
			},
			function() {	$('#'+content_i).stop();}
		);

		$('#'+up_i).hover(
			function() {
				//if (hdn_ht > 0) {$('#'+content_i).animate({ top: "0" }, Math.abs($('#'+content_i).offset().top) * speed_i);}
				if (hdn_ht > 0) {$('#'+content_i).animate({ top: "0" }, speed_i);}
			},
			function() {	$('#'+content_i).stop();}
		);
	}
}
