﻿function toogleMenuButtonExpand(){
	$('#toogleMenuButtonExpand').hide();
	$('#toogleMenuButtonCollapse').show();
}

function toogleMenuButtonCollapse(){
	$('a #toogleMenuButtonExpand').show();
	$('a #toogleMenuButtonCollapse').hide();
}

function checkIsEmptyCaptcha(){

	if ($('#recaptcha_response_field').val() == ''){
		alert('Моля въведете двете думи показани на картинката!');
		return false;
	}
	
	return true;
}
