// JavaScript Document
$(function(){

	// mostrar site sempre com frame
	if (location.href==top.location.href){
		acessolocal = /localhost/.test(location.href.toLowerCase());
		if(!acessolocal){
			location.replace('./');
		}
	}

	// abre o mapa em um popup
	$('div.c5 a.mapa').click(function(){
		window.open($(this).attr('href'), 'mapa', 'width=660,height=520,top=100,left=100,status=yes'); 
		return false;
	});
	
	// botao stop
	$('#stop').click(function(){
		$("#equalizer").addClass('eqstop');
		parent.bottomFrame.location.replace('_player.php?stop');
		return false;
	});
	
	// botao play
	$('#play').click(function(){
		$("#equalizer").removeClass('eqstop');
		parent.bottomFrame.location.replace('_player.php?play');
		return false;
	});
	
	// click no link da foto na home
	$("#novidades div.foto, #noticias div.foto").click(function(){
		location.href = $(this).parent('a').attr('href');
		return false;
	});
	
});
