// ---------------------------------------------------------
// IFRAME communication
// ---------------------------------------------------------
document.domain = 'murabilia.com';

function frameHeight(id, height)
{
	document.getElementById(id).height = height;
}

function checkForm(theForm)
{
	var fc=new FormChecker(theForm);
	fc.addField(new Field('username', FC_TEXT, FC_TEXTVALIDATOR, true, 'Inserire l\'username'));
	fc.addField(new Field('password', FC_TEXT, FC_TEXTVALIDATOR, true, 'Inserire la Password'));
	return fc.doCheck();
}

function light_box()
{
	$('#iframe-espositori').contents().find('.listaFoto a').lightBox({
		imageLoading: '/img/lightbox/lightbox-ico-loading.gif',
		imageBtnClose: '/img/lightbox/lightbox-btn-close.gif',
		imageBtnPrev: '/img/lightbox/lightbox-btn-prev.gif',
		imageBtnNext: '/img/lightbox/lightbox-btn-next.gif',
		imageBlank: '/img/lightbox/lightbox-blank.gif',
		fixedNavigation: true
	});
}

