$(document).ready(function() {

	$("#main-img").cycle({
		fx: 'fade',
		timeout: 8000,
		speed: 2000
	});

	var tell = function() { alert('tell'); };
	
	$('#main-in').ajaxSend(tell);
	
	$('#menu_home').click(function(event) {
		event.preventDefault();
		$('#main-in').load("view/pages/home.php");
	});

	$('#menu_profilo').click(function(event) {
		event.preventDefault();
		$('#main-in').load("view/pages/profilo/main.php");
		/*$.post("view/pages/sample.php", {}, function(data) {
			$('#main-in').html(data);
		}, "html");*/
	});

});