//////////////////////////////////////////////////////////
//	Framework jQuery
//////////////////////////////////////////////////////////
jQuery(document).ready(
	function($){
		/////////////////////////////////
		$('img[src$=png]').pngfix();
		/////////////////////////////////
		$("#topo_left, #topo_right").vAlign();
		/////////////////////////////////
		$("#topo_right a img").hover(
			function(){$(this).fadeTo("opacity", 0.30)},
			function(){$(this).fadeTo("opacity", 1)}
		);
		/////////////////////////////////
		$('#flashbox').smallslider({
			time:6000,
			onImageStop:true,
			switchEffect:'ease',
			switchEase:'easeInExpo',
			switchMode:'click',
			showText:true,
			textLink:true,
			textPosition:'bottom',
			textSwitch:1
		});
		/////////////////////////////////		
	}
);
//////////////////////////////////////////////////////////