$(document).ready(function(){
    ///////////////////////////// BADY MENU /////////////////////////////
	$('.bady-menu .menu-item').each(function(){
		$(this).mouseenter(function(){
			$(this).find('.menu-top').addClass('menu-top-selected');
			if($(this).find('.menu-telo').html().replace(/\s/g,'')!='') $(this).find('.menu-bot').show();
		});
		$(this).mouseleave(function(){
			$(this).find('.menu-top').removeClass('menu-top-selected');
			$(this).find('.menu-bot').hide();
		});
	});
    /////////////////////////////////////////////////////////////////////
    ///////////////////////////// BADY GALERIA //////////////////////////
    $('.bady-galeria').find('a').each(function(){
	$(this).css({'display':'table-cell','height':100,'vertical-align':'middle'});
	$(this).wrap('<div style="display:inline-block;margin:10px" />');
    });
    /////////////////////////////////////////////////////////////////////
    $('.fancy').fancybox();
	$('.footBg').css({'top':$('.footer').offset().top,'height':$('.footer').height()+40});
});

function resetField(x,text){
    if(x.value==text) x.value='';
}


function sendKontakt(){
    var fields={"fn":"sendKontakt", "lan": LAN};
    $('#kontaktForm input[name], #kontaktForm textarea[name]').each(function(){
	fields[$(this).attr('name')]=$(this).val();
    });
    
    $.post(
	SITE+"/ajax/set.php",
	fields,
	function(data){
	    if(data.ok){
		alert(data.text);
		$('#kontaktForm input[name], #kontaktForm textarea[name]').each(function(){
		    $(this).val('');
		});
	    }else{
		alert(data.text);
	    }
	},
	"json"
    );
}

