$(document).ready(function() {

$('#hdr-slideshow').innerfade({
 speed: '4000',
 timeout: '5000',
 type: 'random',
 containerheight: '150px'
     }); 
     
     
$("#firmy-slider").jCarouselLite({
    vertical:true,
    visible:5.3,
    circular:true,
    auto: 0.001,
    speed: 2000
});


$("#maincol a").not("img, .button, .buton").hover(function() {
	$(this).stop().animate({borderWidth: "7px"}, 200);
}, function() {
	$(this).stop().animate({borderWidth: "1px"}, 100);
});							   

$('#form-box').click(function() {
							 $(this).blur();
});


$("a#opaq").fadeTo(0, .75);
$("a#opaq").hover(function () {
$(this).stop().fadeTo(200, 1);},
function () {$(this).fadeTo(200, .75);
});





}); 



