Cufon.replace('div.menu-gorne a.nieaktywna', {
	fontFamily: 'zurich',
	hover: {
		color: '#1eff00'
	}
});
Cufon.replace('div.menu-gorne a.aktywna, h1, div.billboard span.nazwa, span.do-wynajecia, span.zurich', {
	fontFamily: 'zurich'
});

$(document).ready(function(){
	$('table.cennik').colorize({
		hiliteColor: 'none',
		bgColor: '#d9e0ee',
		altColor: '#d9e0ee',
		hoverColor: '#cccccc'
	});
	$(".paginacja").paginate({
		count 		: $('.pagedemo').length,
		start 		: 1,
		display     : 7,
		border					: true,
		border_color			: '#2f78d6',
		text_color  			: '#2f78d6',
		background_color    	: '#000',	
		border_hover_color		: '#2f78d6',
		text_hover_color  		: '#000',
		background_hover_color	: '#2f78d6', 
		images					: false,
		mouse					: 'press',
		onChange     			: function(page){
									$.scrollTo('div.box-czarny-gora', 300, {onAfter: function(){
										$('._current').removeClass('_current').hide();
										$('#p'+page).addClass('_current').show();
									}});
								  }
	});
});

$(document).ready(function(){
	$('input[rel], textarea[rel]').focus(function(){
		if ($(this).val()==$(this).attr('rel'))
		{
			$(this).val('');
			$(this).css('color','#000');
		}
	});
	$('input[rel], textarea[rel]').blur(function(){
		if ($(this).val()=='' || $(this).val()==$(this).attr('rel'))
		{
			$(this).val($(this).attr('rel'));
			$(this).css('color','#888');
		}
	});
});
