
$(function() {
	
$('a.lightbox').lightBox();

	$('#sub1').hover(function(){
	    $('.o_firmie').css({'background-position':'bottom'});
	},function(){
	    $('.o_firmie').css({'background-position':'top'});
	});

	$('#sub2').hover(function(){
	    $('.oferta').css({'background-position':'bottom'});
	},function(){
	    $('.oferta').css({'background-position':'top'});
	});

	$(".tabs").tabs(".slide", {

	    // enable "cross-fading" effect
	    effect: 'fade',
	    fadeOutSpeed: "slow",

	    // start from the beginning after the last tab
	    rotate: true

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow();
	$(".tabs").tabs().play();

	
});


