function hideAll() {
    jQuery('.hidden-box').each(function() {
        jQuery(this).hide();
    })
}

function showLoginBox() {
    hideAll();
    jQuery('#login-box').show();
}

function hideLoginBox() {
    jQuery('#login-box').hide();
}

function showRegistrationBox() {
    hideAll();
    jQuery('#registration-box').show();
}

function hideRegistrationBox() {
    jQuery('#registration-box').hide();
}

jQuery(document).ready(function() {
    jqueryslidemenu.buildmenu("slidemenu", arrowimages, 1);
	
	$('input#search-button').click(function() {
		if ($('input#search-text').attr('value') == '') {
			$('input#search-text').attr('value', 'Как бросить курить?');
		}
		$('form#search-form').submit();
	});
})
