//Fancybox
$("a#inline").fancybox({
	'hideOnContentClick': false,
	'showCloseButton': false
});


//Close button
$('.close').click(function() {
	$('#project-container').addClass('hidden');
	$('#contact').addClass('hidden');
	$('.cycle').cycle('destroy');
	$('#project-contents').empty();
	
});


//CONTACT
$('.contact, .contactLink').click(function() {
	
	if ($('#contact, #project-container').is(':visible')){
	
		$('#project-container, #contact').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
		
		//Resize the map
		google.maps.event.trigger(map, "resize");
	} else {
	
		$('#contact').removeClass('hidden');
		$(function displayMap() {
			document.getElementById('map_canvas').style.display="block";
			initialize();
		});
		}
});


//HQ
$('.tile .hq').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/hq.html');
	}
});


//ART
$('.tile .art').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/art.html');
	}
});


//C100
$('.tile .c100').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/c100.html');
	}
});

//IMEX
$('.tile .imex').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/imex.html');
	}
});


//G1
$('.tile .g1').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/g1.html');
	}
});

//ERANTIS
$('.tile .erantis').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/erantis.html');
	}
});

//MAYADA
$('.tile .mayada').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/mayada.html');
	}
});

//ISLINGTON
$('.tile .islington').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/islington.html');
	}
});

//AMNE
$('.tile .amne').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/amne.html');
	}
});

//JOULIA
$('.tile .joulia').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/joulia.html');
	}
});

//WATER
$('.tile .watersedge').click(function() {	
	if ($('#contact, #project-container').is(':visible')){
		$('#contact, #project-container').addClass('hidden');
		$('.cycle').cycle('destroy');
		$('#project-contents').empty();
	} else {
		$('#project-container').removeClass('hidden');
		$('#project-contents').load('projects/watersedge.html');
	}
});//END
