// JavaScript Document
$( window ).load( function() 
{  
	$( document ).pngFix(); 

	$( "#menu" ).lavaLamp(
	{
		fx: "backout",
        speed: 700,
        click: function( event, menuItem ) 
		{
			return false;
		}
    });		
			
			
	$( ".conteudo" ).dropShadow( 
	{
		left: 0, 
		top: 0, 
		opacity: 0.3, 
		blur: 2
	});
			
	$( "#menu>li>a" ).click( function()
	{
		var link = $( this ).attr( "href" );
				
		if ( $( document ).find( link ).length > 0 )
		{
			$( ".lista-submenu" ).hide();
			$( link ).show();
		}
		else
		{
			window.location =  $( this ).attr( "href" );
		}
	});
		
});