$(document).ready(function() {

	$(".anons").hover(
		function () {
			$(this).css('background-image', "url('css/anons-bg.gif')");
		}, 
		function () {
			$(this).css("background-image", "none");
		}
	);
	
	$(".cgallery").hover(
			function () {
				$(this).children('.bigger').css('display', "block");
			}, 
			function () {
				$(this).children('.bigger').css("display", "none");
			}
	);
	
	$('.file').change(function(){
		$('div.fileinputs').css("background", "url('css/file_selected.gif')");
	});

	$("#enterButton").click(function(){
		$("body").css("overflow", "auto");
		$("#intro").remove();
		$("#hello").remove();
	});
	
	$('#wojOptSel').selectbox();
	$('#celOptSel').selectbox();
	$('#catOptSel').selectbox();
	$('#timeOptSel').selectbox();
	$('#woj').selectbox();
	$('#kat').selectbox();
	$('#cel').selectbox();
	
	
	
	$('.tooltip').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - ",
		fade: 250,
		top: -50
	});
	

});
