// JavaScript Document

//////////////////////// logo

var flashvars_logo = {};
var params_logo = {wmode : "transparent"};
var attributes_logo = {};

swfobject.embedSWF("swf/logo.swf", "logo", "220", "34", "9.0.0","expressInstall.swf", flashvars_logo, params_logo, attributes_logo);

$('#logo').click(function(){
	window.location="home.html";	
})

////////////////////// menu

var flashvars = {};
var params = {wmode : "transparent"};
var attributes = {};

swfobject.embedSWF("swf/menu.swf", "menu_swf", "720", "90", "9.0.0","expressInstall.swf", flashvars, params, attributes);

$(document).ready(function() {

	if (typeof adj!='undefined'){
		adj()
	}
	
	$('.enviar_busca').click(function()
	{
		var email = $('.busca').val();
		$.post('blackFish/upload_email.php', {email:email}, function(data){
			$('#alerta').html(data);
			$('.busca').val('');
		})
	})

	$('.duvidas').fancybox({
		'type'				: 'iframe',
		'width'				: 490,
		'height'			: 430,
		'frameWidth'		: 490,
		'frameHeight'		: 430,
		'padding'			: 0,
		'margin'			: 0,
		'scrolling'   		: 'no',
		'titleShow'		:false
	});

	///////////////////// duvidas
	/*$(".duvidas").fancybox({
		'autoScale'     	: true,
		'type'				: 'iframe',
		'width'				: 490,
		'height'			: 400,
		'frameWidth'		: 490,
		'frameHeight'		: 500,
		'padding'			: 0,
		'margin'			: 0,
		'scrolling'   		: 'no',
		'titleShow'		:false
	})*/

})
