
$("#playlist").tpplaylist({
	//mixId: 410429654,
	//mixId: 441394241,
	//mixId: 450200990,
	//mixId: 469247007,
	mixId: 485337885,
	limit: 2	
});

$("#rotator").tprotator({ 
	rotationSpeed: 6000,
	transitionSpeed: 1000
});

// Country select dropdown
$("dt a", "#country").click(function() {
	if ($("dd", "#country").css("display") === "none") {
		$(this).focus();
		$("dd", "#country").slideDown("fast");
	} else {
		$("dd", "#country").slideUp("fast");
	}
	return false;
}).blur(function() {
	setTimeout(function() {
		$("dd", "#country").slideUp("fast");
	}, 100);
});

