// execute your scripts when the DOM is ready. this is a good habit 
$(document).ready(function() { 
    // initialize scrollable 
    $("div.scrollable").scrollable({ size: 1, clickable: false }).navigator({
        navi:'div.tabs',
		naviItem: 'a',
		activeClass: 'current'
	});

    $("div.tabs > p > a").click( function() {
        document.getElementById("player1").SetVariable("player:jsPause", "");
        document.getElementById("player2").SetVariable("player:jsPause", "");
        document.getElementById("player3").SetVariable("player:jsPause", "");
    });

});