﻿$(document).ready(function() {

	$(".info").tooltip({	
		left: 25,
		showURL: false,
		extraClass: "shortTT"
	});


	$(".faktura-show-hide").click(function() {
		$("#faktura").toggle();	
	});

	$(".faktura2-show-hide").click(function() {
		$("#faktura2").toggle();	
	});

	$(".odbior-show-hide").click(function() {
		$("#odbior").toggle();	
	});

	$(".dowoz-show-hide").click(function() {
		$("#dowoz").toggle();	
	});
	
	$("a").focus(function() {
		$(this).blur();
	});


	$("#gallery a").lightBox({fixedNavigation:true});
	$(".lightbox").lightBox({fixedNavigation:true});
	
	
	
	
	
	
});


