$(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);
    
    
    /* ##########################################
     * DRUKOWANIE
     * ##########################################*/
    
    $("#print").click(function(){
		window.print();
    })

    /* ##########################################
     * BLINK
     * ##########################################*/

    function blinkuj() {
	$('#header ul.glowne li a.glowne-4').toggleClass('blink');
    }

    window.setInterval(blinkuj, 400);


		
})



