$(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);
	
	
	/* ##########################################
     * SKALOWANIE TEKSTU
     * ##########################################*/
    
    var size_from_cookie = $.cookie('fontsize');
    if(size_from_cookie) {
		$('.text').css('font-size', size_from_cookie+'px');
    }
    $("#skaluj #plus").click(function(){
		var currentFontSize = $('.text').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum+2;
		if ( newFontSize < 20 ) {
		    $('.text').css('font-size', newFontSize);
		    $.cookie('fontsize', newFontSize, { path: '/' });
		}
		return false;
    });
    $("#skaluj #minus").click(function(){
		var currentFontSize = $('.text').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum-2;
		if ( newFontSize > 10 ) {
		    $('.text').css('font-size', newFontSize);
		    $.cookie('fontsize', newFontSize, { path: '/' });
		}
		return false;
    });


	$("#mod-katalog .colors img").hover(function() {
		$(this).css({'z-index' : '10'});
		$(this).addClass("hover").stop()
			.animate({
				marginTop: '-50px',
				marginLeft: '-110px',
				top: '0',
				left: '50%',
				width: '300px',
				height: '150px'
			}, 200);

		} , function() {
		$(this).css({'z-index' : '0'});
		$(this).removeClass("hover").stop()
			.animate({
				marginTop: '0',
				marginLeft: '0',
				top: '0',
				left: '0',
				width: '80px',
				height: '80px'
			}, 400);
	});

    
    
    /* ##########################################
     * DRUKOWANIE
     * ##########################################*/
    
    $("#print").click(function(){
		window.print();
    });
    $("#drukuj").click(function(){
		window.print();
    });
		
});



