// JavaScript Document
 jQuery(document).ready(function() {
			var menuItem = jQuery("#block-menu-menu-mainmenu .menu li");
			//menuItem.removeClass();
			menuItem.each(function(i) {
				i++;
				jQuery(this).addClass('menu-'+i);
			});
		});
		
function showpopup()
{		
		
		var popupid = 'popuprel';
		$('#' + popupid).fadeIn();
		$('body').append('<div id="fade"></div>');
		$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
		var popuptopmargin = ($('#' + popupid).height() + 10) / 2;
		var popupleftmargin = ($('#' + popupid).width() + 10) / 2;
		$('#' + popupid).css({
		'margin-top' : -popuptopmargin,
		'margin-left' : -popupleftmargin
		});
		
		 

}
function hidepopup()
{
 $('#fade , #popuprel ').fadeOut();

}

function check()
{

 var em=document.getElementById('cf_field_1').value;
 var na=document.getElementById('cf_field_2').value;

 if(na=='' || na=='Ваше Имя' || em=='' || em=='Ваш E-mail')
 {
 document.getElementById('err').style.display='block';
 }
 else
 {
 document.getElementById('fo').submit();
 }
} 
