	var podDuration = 500;
    function MM_openBrWindow(theURL, winName, features) { //v2.0
        window.open(theURL, winName, features);
    }
    var stutter
    function dimPodChoice(theClapper) {
        var stutterFunc = "dimPodChoiceStutter('" + theClapper + "')";
        if (theClapper == 'clapOn') {
            stutter = setTimeout(stutterFunc, 500);
        } else {
            clearTimeout(stutter);
            dimPodChoiceStutter(theClapper);
        }
    }
    function dimPodChoiceStutter(theClapper) {
        if (theClapper == 'clapOff') {
            document.getElementById('podChoice').style.visibility = 'hidden';
        }
        else if (theClapper == 'clapOn') {
            document.getElementById('podChoice').style.visibility = 'visible';
        }
    }
    function underliner(linkover) {
        linkover.className = "iPod_prodname_over";
    }
    function un_underliner(linkover) {
        linkover.className = "iPod_prodname";
    }
    function underliner2(linkover, cssName) {
        linkover.className = cssName;
    }
    function un_underliner2(linkover, cssName) {
        linkover.className = cssName;
    }
    function loadStatus() {
        document.getElementById("tabBin").style.visibility = "hidden";
        if (document.getElementById("loadStatus") != null)
            document.getElementById("loadStatus").innerHTML = "<img src='../images/chill.gif'>";
        if (document.getElementById("loadStatusDefault") != null)
            document.getElementById("loadStatusDefault").innerHTML = "<img src='images/chill.gif'>";
    }
    function onPod(obj) {
        //$("a.on").removeclass("on");
        // $("#navigation a").removeclass("on");
        $("#navigation ul li a").removeClass("on");
        obj.className = 'on';
    }
    function movePod(d) {
		setTimeout("delayMovePod('"+d+"')", podDuration*1.2);
		//delayMovePod(d);
    }
	function delayMovePod(d) {
		var lis = dx.$("navigation").getElementsByTagName("li");
        var ci = -1;
        for (i = 0; i < lis.length; i++) {
            if (lis[i].getElementsByTagName("a")[0].className == "on") {
                $("#navigation ul li a.on").removeClass("on");
                ci = i;
            }
        }
        d == "p" ? ci-- : d == "n" ? ci++ : null;
        ci == -1 ? ci = lis.length - 1 : ci == lis.length ? ci = 0 : null;
        lis[ci].getElementsByTagName("a")[0].className = "on";
	}
	$(document).ready(function() {jQuery.easing.easeOutQuart = function(x, t, b, c, d) {return -c * ((t = t / d - 1) * t * t * t - 1) + b;};jQuery(function($) {$('#choosePod').serialScroll({target:  '#podList',items:  'ul',prev:   '#prev',next: '#next',axis:   'xy', navigation:  '#navigation li a',duration: podDuration,force: true, start: podStart,onBefore: function(e, elem, $pane, $items, pos) {e.preventDefault();if (this.blur)this.blur();},onAfter: function(elem) {}});});});