// JavaScript Document

/* condividi su facebook */
function fbs_click() {
	u=location.href;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=600,height=600');
	return false;
}


$(document).ready(function() {
	$("#mesg_link").fancybox({
		'padding'			: 0,
		'titleShow'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#000000',
		'overlayOpacity'	: '0.8',
		'speedIn'			: '800',
		'speedOut'			: '800',
		'autoDimensions'	: true,
		'height'			: $("#mesg_content").height(),
		'width'				: $("#mesg_content").width()
	});
});

$(document).ready(function() {

	$(".view_legal").fancybox({
		'width'				: 600,
		'height'			: 540,
		'autoScale'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#000000',
		'overlayOpacity'	: '0.8',
		'speedIn'			: '800',
		'speedOut'			: '800',
		'type'				: 'iframe'
	});

});


/* focus su primo campo form-usato solo in nodo Contatti */
function formfocus() {
	document.getElementById('nome').focus();
}

/* riposiziona icone FB e TW a margin bottom */
function set_social_position() {
	var DivHeight = document.getElementById('main_container').clientHeight
	//alert(DivHeight);
	document.getElementById('left_container').style.height = (DivHeight-40)+'px';
}

