$(document).ready(function() {
  
	$('.contactSection ul li').mouseover(
		function(){
			$(this).children('.map').show();
			var mapOffset = $(this).children('.map').offset();
			$(this).children('.map').clone().appendTo('body').css({
					'position' : 'absolute',
					'left' : mapOffset.left + 'px',
					'top' : mapOffset.top + 'px',
					'z-index' : 999
				}).addClass('visibleMap');
			$(this).children('.map').hide();
			$('body .visibleMap').bind('mouseleave',function(){ $('.visibleMap').remove(); });
		}
	);
	
	$('.serviceSection').children('br:first').remove();
	
	$('.infoPage .theContent').columnize({ columns:2 });
	$('.infoPage .theContent h3').addClass('dontsplit');
	
//	$('.contactSection .wrapper').scrollable();

//	$('.contactSection a.btnPrev').click(
//		function(event){
//			event.preventDefault();
//			if($(this).siblings('.wrapper').css('margin-left') !== '0px'){
//				$(this).siblings('.wrapper').css('margin-left')
//			}
//		}
//	);

	$('.contactSection .wrapper').jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 4
    });
	
});
