//jQuery

//Alterar eventos do Mouse
$(document).ready(function(){
	$('#webradiopop .poppedido').click(function(event){
		event.preventDefault();
		window.open($(this).attr('href'), 'janpoppedido', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=460,height=550');
	});
	
	$('#webradiopop .site').click(function(event){
		event.preventDefault();
		window.open($(this).attr('href'), '_blank');
	});
});
