jQuery(document).ready(function($){
	var currentTime = new Date();
	var h = currentTime.getHours();
	var m = currentTime.getMinutes();
		if(h == 18){
			if(m < 30){
			   var top5 = setInterval(function() 
			   {
				 $('#top5').load('scripts/top6at6/top6at6.php?randval='+ Math.random());
			   }, 30000);
			}
		}

	$("#top5_submit").submit(function(){
		check_num = $("input:checkbox:checked").length;
		if(check_num > 6){
			alert("Πρέπει να επιλέξετε μέχρι 6 τραγούδια");
			return false;
		}
		if(check_num == 0){
			alert("Πρέπει να επιλέξετε τουλάχιστον 1 τραγούδι");
			return false;
		}
	});
	
	$(".mp3player").click(function(){
		idsong = $(this).attr("alt");
		if($(this).attr("src") == 'images/playtop5.png'){
			$(".mp3player").each(function () {
				$(this).attr("src","images/playtop5.png");
			});
			
			$("#mp3player_embed").html("");
			$("#mp3player_embed").html("<EMBED id='mp3player_embed' src='files/top5/"+idsong+".mp3' hidden='true' autostart='true'");
			$(this).attr("src","images/stop_playingtop5.png");
		}else{
			$(this).attr("src","images/playtop5.png");
			$("#mp3player_embed").html("");
		}

	});
})
