Hyphenator.config({
	minwordlength : 4
});
Hyphenator.run({patterns: '/js/patterns/'});
$(function() {
	$('#login #user').defaultValue('twój login do ZSMiW');
	$('#cts p, #cts dd, #agreement ol li').not('#promo p').addClass('hyphenate').css({textAlign: 'justify'});
	$('#show-services').mouseenter(function() { $('#services').slideDown('fast');});
        $('#show-solutions').mouseenter(function() { $('#solutions').slideDown('fast');});
        $('#show-vindication').mouseenter(function() { $('#vindication').slideDown('fast');});
        $('#show-debtor-zone').mouseenter(function() { $('#debtor-zone').slideDown('fast');});
        
        //$('#services,#solutions,#vindication,#debtor-zone').mouseleave(function() { $(this).slideUp('fast');});

	$('#navi').mouseleave(function() {
            $('#services').slideUp('fast');
            $('#solutions').slideUp('fast');
            $('#vindication').slideUp('fast');
            $('#debtor-zone').slideUp('fast');
        });

	$('#navi a').mouseenter(function() {
		$(this).animate({backgroundPosition: '0'}, 'fast');
	});
	$('#navi a').mouseleave(function() {
		$(this).animate({backgroundPosition: '320'}, 'fast');
	});
	$('form').submit(function() {
		$(this).find('.empty').val(null);
	});
	$('#news .show-more').click(function() {
		$(this).parent().parent().next('.more').show();
		$(this).parent().parent().hide();
	});
});
