$(document).ready(function(){
	var $car = '<div id="carregando"><img src="images/carregando.gif" alt="" /></div>';
	var $meio = $('#meio');
	// Menu - Início
	$('#menu li:first').css({'background':'none'});
	$('#logos li:first').css({'background':'none'});
	$('#menu a').click(function(){
		$.ajax({
			type: 'POST',
			url: 'includes/js/ajax.php',
			data: 'p=' + $(this).attr('href'),
			dataType: 'html',
			cache: false,
			beforeSend: function(){
				$meio.html($car);
			},
			success: function(a){
				$meio.html(a);
				$.ajax({ url: 'includes/js/ajax.js', dataType: 'script' });
			}
		});
		return false;
	});
	// Menu - Fim
	// Home - Início
	$.ajax({
		url: 'includes/js/ajax.php',
		type: 'POST',
		data: 'p=#',
		cache: false,
		beforeSend: function(){
			$meio.html($car);
		},
		success: function(a){
			$meio.html(a);
			$.ajax({ url: 'includes/js/ajax.js', dataType: 'script' });
		}
	});
	// Home - Fim
});

if (hs.addSlideshow) hs.addSlideshow({
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: true,
	overlayOptions: { opacity: .6, position: 'center', hideOnMouseOut: true }
});