$(document).ready(function(){

    /* ##########################################
     * MENU
     * ##########################################*/

	var config = {    
	     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
	     interval: 100, // number = milliseconds for onMouseOver polling interval    
	     over: MenuIn, // function = onMouseOver callback (REQUIRED)    
	     timeout: 500, // number = milliseconds delay before onMouseOut    
	     out: MenuOut // function = onMouseOut callback (REQUIRED)    
	};
	function MenuIn() {
	    $(this).children('ul').parent().addClass('active');
	}; 
	function MenuOut() {
	    $(this).removeClass('active');
	};
	$('#menu ul > li').hoverIntent(config);
	
	
	
    /* ##########################################
     * WYSZUKIWARKA
     * ##########################################*/

    $('#search_box :text').focus(function(){
	if($(this).val()=="Wpisz szukaną frazę") {
	    $(this).val('');
	}
    });
    $('#search_box :text').blur(function(){
	if( $(this).val() == '') {
	    $(this).val('Wpisz szukaną frazę');
	}
    });
    
    
    /* ##########################################
     * DRUKOWANIE
     * ##########################################*/
    
    $("#print").click(function(){
	window.print();
    })



    /* ##########################################
     * LICZNIK KOMENTARZY
     * ##########################################*/
    
    var COMMENT_MAX_LENGTH = 1000;

    $('.comment_form form textarea').keyup(function () {
	var i = $(this).val().length;
	var areatext = $(this).val();

	$(this).parent('p').find('.counter').remove();

	if (i>COMMENT_MAX_LENGTH) {
	    $(this).parent('p').find('.c').css('background-color', '#ff0000');

	    if (i=COMMENT_MAX_LENGTH+1) {
		$(this).val(areatext.substring(0, i-1));
	    } else {
		$(this).val(areatext.substring(0, COMMENT_MAX_LENGTH));
	    }
	} else {
	    $(this).parent('p').find('.c').remove();
	    $(this).parent('p').append('<span class="c">'+i+'/'+COMMENT_MAX_LENGTH+'</span>');
	}
    }).keyup();


    /* ##########################################
     * OFERTA
     * ##########################################*/

    function expand(){
	$(this).parent().find('ul').slideDown();
    }
    
    function hide(){
	$(this).parent().find('ul').slideUp();
    }

    $(document).ready(function() {
	$('.expand').toggle(expand, hide);
	$('.w').toggle(hide, expand);
    });

		
})



