// Services Banners Sliding Caption
jQuery(document).ready(function()
{
    jQuery('.services-banner dl dt a').bigTarget({ hoverClass: 'hover', clickZone : '.services-banner' });
    jQuery('.services-banner dl').css({ bottom: '-40px' }).after('<div class="bottom"><!-- --></div>');
    jQuery('.services-banner').hover(
    function() { jQuery("dl", this).stop().animate({ bottom: '0px' }, { queue: false, duration: 160}); },
    function() { jQuery("dl", this).stop().animate({ bottom: '-40px' }, { queue: false, duration: 160}); });

	jQuery('#range-maps ul li a.tab').click(function()
	    {
	        jQuery('#range-maps ul li').each( function() { jQuery(this).removeClass('selected'); } );
	        jQuery(this).parent().addClass('selected');
	        return false;
	    });

});


