function initContacForm () {
	$v = $("#askMaxi").validate();
	$('#deleteForm').bind('click',function(event) {
		$v.resetForm();
	});
}

function initGallery () {
	$('li.gal-play').bind('click', function(event) {
		event.preventDefault();
		$target = $(event.target);
		$container = $($target.attr('href'));
		$('div.item').removeClass('open');
		$container.addClass('open');
		//console.log($($target.attr('href')));
	});
	
	$('div.archiveItem').each(function(cnt) {
		$(this).find('a.full-image').lightBox({
			imageBtnClose: "/dsg/lightbox-btn-close.gif",
			imageBtnNext: "/dsg/lightbox-btn-next.gif",
			imageBtnPrev: "/dsg/lightbox-btn-prev.gif",
			imageLoading: "/dsg/lightbox-ico-loading.gif",
			txtOf: "/",
			txtImage: ""
		});
	});
	
}
