$(document).ready(function(){

  /* Enable the local map fancybox view */
	$("a#map").fancybox({
		'width'	:	'844',
		'height'	:	'1188',
		'type'	:	'iframe'
	});

	/* Animate the ladybirds! */
  $("#big-ladybird").animate({
    left: '+=660px'
  }, {
    duration: "slow",
    easing: 'swing',
    complete: function() {
			$("#small-ladybird").animate({"left": "+=625px"}, "slow", "swing"); 		
    }
  });
  
	/* slider with welcomes on homepage */
	if ($('#welcomes').length > 0) {
  $('#welcomes ul').bxSlider({
    mode: 'fade',
    auto: true,
    controls: false,
    randomStart: true
  });
  }

});
