$(document).ready(function($){
	$("#realizacje a.lightbox").colorbox({maxWidth:"95%", maxHeight:"95%"});
	$("a[rel='colorbox']").colorbox({maxWidth:"95%", maxHeight:"95%"});
});


$(document).ready(function(){
  $("#select li").hover(function(){
	$(this).addClass("red");
	$(this).parent().addClass("active");
  },function(){
	$(this).removeClass("red");
	$(this).parent().removeClass("active");
  }); 
});

$(document).ready(function(){
    $("#select").hide();

		
	$('.show_hide').click(function(){
		$("#select").slideToggle();
	},function(){
		$("#select").slideToggle();
	});

});

i = 0
var speed = 1
function scroll() {
i = i + speed
var div = document.getElementById('scroll')
div.scrollTop = i

if (i > div.scrollHeight - 40) {i = 0}
t1=setTimeout("scroll()",100)
}
