$(document).ready(function(){

    /* ##########################################
     * BANERY
     * ##########################################*/

	$('.cycle-list .items').cycle({
	    fx: 'scrollVert',
	    pager: '.counter',
	    timeout: 7000,
	    next: '.cycle-list .next',
	    prev: '.cycle-list .prev'
	});
	
	$('#banery-oferta .wrapper').cycle({
	    fx: 'scrollHorz',
	    timeout: 7000,
	    next: '#banery-oferta .next',
	    prev: '#banery-oferta .prev'
	});


    /* ##########################################
     * 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: 100, // 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
     * ##########################################*/

    var search_text = $('#search_box :text').val();
    $('#search_box :text').focus(function(){
	if($(this).val()==search_text) {
	    $(this).val('');
	}
    });
    $('#search_box :text').blur(function(){
	if( $(this).val() == '') {
	    $(this).val(search_text);
	}
    });
    
    
    /* ##########################################
     * SKALOWANIE TEKSTU
     * ##########################################*/
    
    var size_from_cookie = $.cookie('fontsize');
    if(size_from_cookie) {
	$('#column5').css('font-size', size_from_cookie+'px');
    }
    $("#skaluj .plus a").click(function(){
	var currentFontSize = $('#column5').css('font-size');
	var currentFontSizeNum = parseFloat(currentFontSize, 10);
	var newFontSize = currentFontSizeNum+2;
	if ( newFontSize < 20 ) {
	    $('#column5').css('font-size', newFontSize);
	    $.cookie('fontsize', newFontSize, { path: '/' });
	}
	return false;
    });
    $("#skaluj .minus a").click(function(){
	var currentFontSize = $('#column5').css('font-size');
	var currentFontSizeNum = parseFloat(currentFontSize, 10);
	var newFontSize = currentFontSizeNum-2;
	if ( newFontSize > 10 ) {
	    $('#column5').css('font-size', newFontSize);
	    $.cookie('fontsize', newFontSize, { path: '/' });
	}
	return false;
    });
    
    /* ##########################################
     * DRUKOWANIE
     * ##########################################*/
    
    $("#print").click(function(){
	window.print();
	return false;
    });

});



