/**  
 * VisãoI Sistemas
 * visaoi@visaoi.com.br
 * 
 * Rua Marcílio Dias, 26
 * Bairro Americano - Lajeado - RS
 * (51)3011-7001 | (51)8424-4494
 * 
 * DESCRIÇÃO
 * Javascripts do módulo site
 *
 * @author		Francisco Schwertner
 * @copyright   Copyright (c) 2005-2008 VisãoI Sistemas. (http://www.visaoi.com)
 * 
 */
$(function() {
	
	
	
	// atualiza a lista de ultimas noticias na lateral direita
//	$.get(baseurl+'/site/noticia/ultimas-noticias/', function(data){
//		//alert("Data Loaded: " + data);
//		$('#ultimas_noticias').html(data);
//	});	
	$('#visaoi').media({ 
	    width: 91,
    	height: 55,
	    autoplay:  true,
	    src: baseurl+'/flash/site/visaoi.swf',
	    attrs:     { wmode:  'transparent' },  // object/embed attrs 
	    params:    { wmode:  'transparent' }, // object params/embed attrs 
	    caption:   false // supress caption text 
	});
	
		$('#topo').media({ 
	    width: 900,
    	height: 280,
	    autoplay:  true,
	    bgColor: '', 
	    src: baseurl+'/flash/site/topo.swf',
	    attrs:     { wmode:  'transparent' }, // object/embed attrs 
	    params:    { wmode:  'transparent' }, // object params/embed attrs 
	    caption:   false // supress caption text
	});
		
		$('#slogan').media({ 
	    width: 500,
    	height: 70,
	    autoplay:  true,
	    bgColor: '', 
	    src: baseurl+'/flash/site/slogan.swf',
	    attrs:     { wmode:  'transparent' }, // object/embed attrs 
	    params:    { wmode:  'transparent' }, // object params/embed attrs 
	    caption:   false // supress caption text
	});
		
		$('#logo').media({ 
	    width: 230,
    	height: 80,
	    autoplay:  true,
	    bgColor: '', 
	    src: baseurl+'/flash/site/logo.swf',
	    attrs:     { wmode:  'transparent' }, // object/embed attrs 
	    params:    { wmode:  'transparent' }, // object params/embed attrs 
	    caption:   false // supress caption text
	});
		
	
	// cria o menu de categorias
	$('#site_menu_dinamico').each(function() {
		$(this).jdMenu();
	});
	
			
}); // fim jquery


/*
 * menu com abertura de submenu
 *
 */

var aberto = "";
var fechado = "";

function preload(){
	if(document.images){
		aberto = new Image(13,9) ;
		fechado = new Image(13,9);
		aberto.src = "../_img/setaAberto.gif";
		fechado.src = "../_img/setaFechado.gif";
	}
}
function mostra(item, item2){
	if (item.style.display=='none'){
		item.style.display='block';
		item2.src=aberto.src;
	}else{
		item.style.display='none';
		item2.src=fechado.src;
	}
}


