Event.observe(window, 'load', function() {
	$('b_form').observe('submit', footSubmit);
	$$('.gallery_place_holder').each(initImgGallery);
});


function footSubmit(e) {
	e.stop();
	$('b_form_message').hide();
	var submitok = true;
	if($F('field_1b').strip() == '') {
		submitok = false;
	}
	if($F('field_2b').strip() == '') {
		submitok = false;
	}
	if($F('field_4b').strip() == '') {
		submitok = false;
	}
	if(submitok) {
		$('b_form').submit();
	} else {
		$('b_form_message').show();
		new Effect.Pulse('b_form_message');
	}
}

function initImgGallery(elem) {
	var width = elem.getWidth();
	var height = elem.getHeight();
	var galleryid = elem.src.split('?')[1].split('=')[1];
	
	elem.replace('<div class="img_gallery" style="width:' + width + 'px;height:' + height + 'px;"><iframe src="/img_gallery.php?galleryid=' + galleryid + '&width=' + width + '&height=' + height + '" style="border: none; width:' + width + 'px;height:' + height + 'px;" /></div>');
	
}