$.noConflict();
  jQuery(document).ready(function($) {
		$('.contents').hide();
    $('.content_header li:first-child a').addClass('active'); // Adds the class 'active' to the first content
        $('#content_wrap div:first-child').fadeIn(); // Fades in the first content
        $('.content_header li a').click(function(){
            $('.content_header li a').removeClass('active'); // Removes all .active from all content
            $('.contents').fadeOut(250); // Fades out all contents
            $(this).addClass('active'); // Adds .active to the clicked content
            var contents = $(this).attr('href'); // Grabs the href from the anchor
            $(contents).delay(251).fadeIn(250); // Finds the id that matches in the content and fades that content in
            event.preventDefault(); // prevents the href from going to #
        });
    $('#lightboxImages a').lightBox({
    		txtOf: false,
        imageLoading: 'http://www.driverboost.com/newcodeinclude/lightbox/images/loading.gif',
				imageBtnClose: 'http://www.driverboost.com/newcodeinclude/lightbox/images/closelabel.gif',
				imageBtnPrev: 'http://www.driverboost.com/newcodeinclude/lightbox/images/prev.gif',
				imageBtnNext: 'http://www.driverboost.com/newcodeinclude/lightbox/images/next.gif'
     });
  });
