//
// fancybox for site plan
//
$(document).ready(function() {
$("a#siteplan").fancybox({
'titlePosition' : 'inside' 
});
});
//
// slideshow using cycle plugin
//
$(document).ready(function() {
// set number of slides
//var slidecount = $('#main_image').children().size();
//$('#totalslides').text(slidecount);
// set first slide
//$('#currentslide').text('1');
$('#main_image').cycle({
fx: 'scrollHorz',
speed: 1200,
easing: 'swing',
timeout: 6000,
pause: 1,
prev: 'a[href=#left]',
next: 'a[href=#right]',
after: function(currSlideElement, nextSlideElement, options, forwardFlag) {
$('#currentslide').text(1+options.currSlide);
$('#totalslides').text(options.slideCount);
}
});
});

