// JavaScript Document
// ustalam zmienne globalne
var rootUrl = "http://beta.hotele.pl/";

// jQuery.form post-submit callback
function jqueryFormShowResponse(responseText, statusText) {
    location.reload();
}

$(document).ready(function(){
	$("#right_box_pics img:first").show();
	$('#right_box_pics').cycle({
		fx:		'fade',
		prev:	'.button_left',
		next:	'.button_right',
		pager:  'ul.buttons',
		pagerAnchorBuilder: function(idx, slide) { var n = parseInt(idx) + 1; return '<li><a href="#">'+ n +'</a></li>'; }
	});
	
	$("#links_scroller a:first").show();
	$('#links_scroller').cycle({
		fx:		'scrollDown',
		speed:    100, 
		timeout:  20000,
		prev:	'.arrow_up',
		next:	'.arrow_down'
	});
	
	$("#akordeon").accordion({autoHeight: false});

});