$(document).ready(function() {
            $("a.external").click(function(){
                window.open(this.href); // pop a new window
                return false; // return false to keep the actual link click from actuating
                });
			$('a.contact').fancybox({'frameWidth':700, 'frameHeight':940, 'hideOnContentClick': false, 'padding':10, 'centerOnScroll':false,'overlayShow':true, 'overlayOpacity':.8});
			$('a#about').fancybox({'frameWidth':750, 'frameHeight':960, 'hideOnContentClick': true, 'padding':30, 'centerOnScroll':false,'overlayShow':true, 'overlayOpacity':.8});
			$('a.group').fancybox({'hideOnContentClick': true, 'padding':15, 'centerOnScroll':false,'overlayShow':true, 'overlayOpacity':.8, 'imageScale':true});
			$('div.longtest').hide();
			$('a.review').fancybox({'frameWidth':700, 'hideOnContentClick': true, 'padding':15, 'centerOnScroll':false,'overlayShow':true, 'overlayOpacity':.8, 'imageScale':true});
			$('a#playvid').click(function(){
              alert("This video will be available soon.  Please visit the rest of our site for information on our 4x4 vans in the mean time.");
              return false;
              });
		});
