function loadAbout()
{
	closeAll();
	var contentHeight = 375;
	var aboutBlurb = '<center><div style="width: 980px; padding-top: 290px; padding-bottom: 10px;">';
	var thisHTML = '<div style="width: 310px; float:left; margin-right: 20px;"><span  id="header24">About Columbia Records</span><br/><img src="images/hr.jpg" width="100%" height="1" style="margin: 10px 0px 10px 0px"/>';
	thisHTML += '<div style="position: relative; width: 100%; height:'+ contentHeight +'px; overflow-x: hidden; overflow-y:hidden"><div id="aboutTrunc" style="position: absolute; width: 295px; left: 0; top: 0; z-index:1; text-align: left">';
	
	thisHTML += '<span id="contentText">';
	
	thisHTML += "Columbia Records is an American record label that was founded in 1888, evolving from an earlier enterprise, the American Graphophone Company - successor to the Volta Graphophone Company. Columbia Records is the oldest surviving brand name in pre-recorded sound, being the first record company to produce pre-recorded records as opposed to blank cylinders. From 1961 to 1990, the label's recordings were released outside the U.S. and Canada on the CBS Records label before officially being renamed Columbia Records on January 1, 1991.<br/><br/>";
	thisHTML += "Today, Columbia Records is one of the most respected and successful record labels in the world, being home to established superstars and exciting new talent. Columbia Records operates as an imprint of the Columbia/Epic Label Group under Label Group Chairman Rob Stringer and Columbia Records Chairman Steve Barnett and is owned by Sony Music Entertainment.<br/><br/>";
	thisHTML += "Sony Music Entertainment is a global recorded music company with a roster of current artists that includes a broad array of both local artists and international superstars. The company boasts a vast catalog that comprises some of the most important recordings in history. Sony Music Entertainment is a wholly owned subsidiary of Sony Corporation of America. ";
	thisHTML += '</span></div>';
	
	thisHTML += '<div id="aboutThumb" style="position:absolute; height:50px; width:10px; background-color:#eee; border:1px outset #eee; left:300px; top:0; z-index:2;"></div>';
	thisHTML += '</div></div>';
	
	thisHTML += '<div style="width: 305px; float:left; margin-right: 20px;">';
	thisHTML += '<center><div style="text-align: left"><span id="header24">Careers/Internships</span><br/><img src="images/hr.jpg" width="100%" height="1" style="margin: 10px 0px 10px 0px"/><br/>';
	thisHTML += '<span id="contentText">Do you have a passion for music? Are you looking to enter the music industry with a global company? If yes, then a career at Columbia Records and Sony Music Entertainment might be right for you!<br/><br/><a href="https://jobs-sonymusic.icims.com/jobs/search?ss=1&searchLocation=&searchCategory=" target="_blank"><img src="images/moreJobs.jpg" border="0"/></a></span><br/><br/>';
	thisHTML += '<span id="header15"><b>Internships</b></span><br/><br/><span id="contentText">Are you the type of person who loves new music? Are you a student? Are you looking to get your foot in the door at a major record company? If so, an internship might be just the ticket!<br/><br/><a href="https://jobs-sonymusic.icims.com/jobs/search?ss=1&searchKeyword=&searchLocation=&searchCategory=11344&searchCategory=11345&searchCategory=11346&searchPositionType=&searchRadius=5&searchZip=" target="_blank"><img src="images/moreInterns.jpg" border="0"/></a></span>;'
	thisHTML += '</div></center></div>';
	
	thisHTML += '<div style="width: 305px; float:left">';
	thisHTML += '<div style="text-align: left"><span id="header24">Contact Us</span><br/><img src="images/hr.jpg" width="100%" height="1" style="margin: 10px 0px 10px 0px"/><br/>';
	thisHTML += '<span id="contentText">Have a question or concern about Columbia Records?<br/><br/><a href="mailto:feedback@columbiarecords.com"><img src="images/emailus.jpg" border="0"/></a></span><br/><br/>';
	thisHTML += '<span id="header24">Site Feedback</span><img src="images/hr.jpg" width="100%" height="1" style="margin: 10px 0px 10px 0px"/><br/><span id="contentText">If you notice a technical or content error on one of our websites, please let us know.<br/><br/><a href="mailto:feedback@columbiarecords.com"><img src="images/sitefeedback.jpg" border="0"/></a></span>';
	thisHTML += '</div></div><div style="clear:both"></div></div></center>';
	
	aboutBlurb += thisHTML;
	
	document.getElementById('quaternary_1').innerHTML = aboutBlurb;
	
	jQuery('#quaternary_1').fadeIn(200, function() { setScrollBarsAbout() });
	
	jQuery("#quaternaryContainer").fadeIn(500, function(){  });
}

function setScrollBarsAbout()
{

	var divMaskHeight = 375;
	
	var aboutThumb = document.getElementById("aboutThumb");
	var aboutDiv =document.getElementById("aboutTrunc");
	var aboutOffsetHeight = aboutDiv.offsetHeight;
	
	if(aboutOffsetHeight > divMaskHeight)
	{
		Drag.init(aboutThumb, null, 300, 300, 0, (divMaskHeight - 50));
			aboutThumb.onDrag = function(x, y) {
			var dragPercent = (y / (divMaskHeight - 50));
			var scrollDif = aboutOffsetHeight - divMaskHeight;
			aboutDiv.style.top= "-"+scrollDif * dragPercent +"px";
		}
	} else {
		aboutThumb.style.display = "none";
	}
	
}
