// JavaScript Document

$(document).ready(function() {
   // do stuff when DOM is ready
$('a[name=internal]').css('cursor', 'pointer');
  
// var xmlhttp;
//function stateChange()
//{
////  if (xmlhttp.status == 200)
////    {
//    // process whatever has been sent back here
////    }
////  else
////    {
////    window.alert("Pagina non trovata!");
////	document.getElementById("loader").style.display = "none";
//////	document.getElementById("content").style.display = "block";
////    }
////  }
//}
function loadPage(url)
{

$('#content').hide('slow', function()
									{
	$('#loader').show('slow', function()
									   {
	    $.get(url, function(data)
							{
			$('#content').html(data);
			//	$('#content img').load(function()
				//				{
								$('#loader').hide('slow', function()
																   {
									$('#content').show('slow', function()
																		{
										$('a[name=internal]').css('cursor', 'pointer');
//										$('a[name=internal]').click(function()
//																			 {
//																			pageToLoad = $(this).attr('rel');
//																			loadPage(pageToLoad);
//																			//return false;
//																		  	 });
//
										
																		});
																   });
								//});
							});
									   });
									});
}

  
//  
// $('img[alt=Home]').click(function() {
//								   
//	loadPage('home_i.php');				  
//					  });
//
// $('img[alt=Il Gruppo]').click(function() {
//
//    loadPage('present_i.php');
//								   });
//
// $('li[title=Web Design]').click(function() {
//    loadPage('web_i.php');
//								   });
//
// $('li[title=Concept]').click(function() {
//    loadPage('conc_inc_i.php');
//								   });
//
// $('li[title=Graphic]').click(function() {
//    loadPage('grafi_inc_i.php');
//								   });
//
// $('li[title=Industrial]').click(function() {
//    loadPage('indu_inc_i.php');
//								   });
//
// $('li[title=Illustrazione]').click(function() {
//    loadPage('illu_inc_i.php');
//								   });
//
// $('img[alt=Portfolio]').click(function() {
//    loadPage('proj_i.php');
//								   });
//
// $('img[alt=Contatti]').click(function() {
//    loadPage('contatti.php');
//								   });
//
// $('img[alt=Downloads]').click(function() {
//    loadPage('wall_i.php');
//								   });
//


});
