// JavaScript Document	

c = false;

function gallery_switch(immagine){
	$("#img-gallery").attr('src', immagine);
}

$(document).ready(function(){
	$(".image").click(function(){
		gallery_switch($(this).attr('href'));
		return false;
	});
	
	/*$("#lingue").click(function(){ // bind click event to link
		if(c)
			$("#lingue").removeClass("show");
		else
			$("#lingue").addClass("show");
		c=!c;
	});*/
	
	$(".cbox").colorbox();
});


