/*==============================================================================
(C)2010 Yezhoff Oleg (mailbox@yezhoff.ru)
==============================================================================*/



/*==============================================================================
ready
==============================================================================*/
$(document).ready(function()
{

$('.img').mouseenter(function(){
$(this).next('.title').slideUp(0);
});

$('.img .title').mouseenter(function(){
$(this).slideUp(0);
});

$('.img').mouseleave(function(){
$(this).next('.title').slideDown(200);
});





/*==============================================================================
submit
==============================================================================*/

$('.submit').click(function(){
$('.req').removeClass('err');
$('#err').html('');


$(".req").each(function(){
if (!$(this).val()){
$(this).addClass('err').focus();
var name=$(this).attr('title');

$('#err').html('Необходимо заполнить поле <b>'+name+'</b>');
return false;
}

});

var err=$('#err').html();

if (err){
return false;
  }



});

/*==============================================================================
********************************************************************************
==============================================================================*/
//end of ready
});
/*==============================================================================
********************************************************************************
==============================================================================*/


