  		$(document).ready(function(){	
  			$("#slider").easySlider({
  				auto: true, 
  				continuous: true,
  				numeric: true,
  				controlsFade: false,
  				speed: 400,
  				pause: 6000
  			});
  		});

$(document).ready(function() {
	$("a.popfancy").fancybox({
		'speedIn'		:	300,
		'hideOnContentClick': true,
		'hideOnOverlayClick': true,
		'overlayShow': true,
		'showCloseButton': false,
		'padding': 3,
		'overlayOpacity': 0.6,
		'transitionIn': 'elastic',
		'transitionOut': 'fade',
		'overlayColor': '#000',
    'titlePosition': 'over', 
		'speedOut'		:	150 
	});
});

$(document).ready(function() {
  $('#morebox').hide();
    
  $('#morebox-down').click(function() {
    $('#morebox').slideDown('slow');
    return false;
  });
  $('#morebox-up').click(function() {
    $('#morebox').slideUp('fast');
    return false;
  });
  $('#morebox-slidetoggle').click(function() {
    $('#morebox').slideToggle(400);
    return false;
  });
});

$(document).ready(function() {
  $("a.mapslink").fancybox({
		'width'				: '60%',
		'height'			: '80%',
    'autoScale'     	: false,
		'speedIn'		:	300,
		'hideOnContentClick': true,
		'hideOnOverlayClick': true,
		'overlayShow': true,
		'showCloseButton': false,
		'padding': 0,
		'overlayOpacity': 0.6,
    'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayColor': '#000',
    'titleShow': false, 
		'speedOut'		:	150,
		'type'				: 'iframe'
  });
});