Code
<div class="player1" style="display:none;">Код плеера 1</div>
<div class="player2" style="display:none;">Код плеера 2</div>
<div class="south" onclick="$('.player1, .player2').toggle();" title="Полезная кнопка если первый плеер неработает=) Пользуйтесь на здровя!" style="cursor:pointer;">
<button id="switch" style="margin-top:1px;color:#1494d8;" type="submit">Сменить плеер</button>
</div>
<script type="text/javascript" src="http://usite.su/js/cookie.js"></script>
<script type="text/javascript">
$.cookie('cookiePlay'); var locat = location.href;
if($.cookie('cookiePlay')) {
$('#switch').click(function() {$.cookie('cookiePlay', null); window.location.href = location.href;});
$('.player2').removeAttr("style");
} else {
$('.player1').removeAttr("style");
$('#switch').click(function() {$.cookie('cookiePlay', 'pfff'); window.location.href = location.href;});
};
</script>