$(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ę');
	}
    });
    
    
    /* ##########################################
     * SKALOWANIE TEKSTU
     * ##########################################*/
    
    var size_from_cookie = $.cookie('fontsize');
    if(size_from_cookie) {
	$(".text").css("font-size", size_from_cookie);
    }
    $("#skaluj span").click(function(){
	var size = $(this).attr("id").replace("p","");
	$(".text").css("font-size",size+"%");
	$.cookie('fontsize', size+"%", { path: '/' });
    });
    
    
    
    /* ##########################################
     * DRUKOWANIE
     * ##########################################*/
    
    $("#print").click(function(){
	window.print();
    })

		
})

