// must put block of html in single quotes to preserve double quotes inside.  
// Therefore must escape ( \  or backslash ) all subsequent single quotes AND line breaks

// selects random variable (myQuotes) and replaces div with id [new-service]
$(document).ready(function() {	 
	var myQuotes = new Array();
	myQuotes[0] = '<img src="Source/images/icons/monitor-skins.png" width="85" height="85" alt="computer monitor" style="float:left; margin: -8px 10px 0 -10px;" /> \
					<h1 class="title">\
						New Service: <strong>Laser Hair Removal</strong> \
						<span>with the world\'s most advanced <a href="http://www.cynosure.com" onclick="window.open(\'http://www.cynosure.com/products/elite-mpx/index.php\',\'_blank\');" title="Elite MPX&trade; by Cynosure&reg;| has a patented <strong>MultiPlex&trade;</strong> sequencing technology which allows for customized blending of two laser wavelenghts into one pulse. |<strong>It\'s like being treated by two lasers at once!</strong>| Only Elite MPX&trade; provides faster, safer and more effective treatment than any other single-wavelength system.">Elite MPX&trade;</a> aesthetic workstation.</span>\
				  </h1>\
					<p style="margin-top:-5px; padding-bottom:0.8em;">\
						Delivering personalized <a href="http://www.foresthillslaserspa.com" onclick="window.open(\'http://www.foresthillslaserspa.com/elite-mpx-multiplex.html\',\'blank\');" class="tipInclude" rel="Source/images/content/skin-changer/hair_removal.jpg" title="Guaranteed Hair Reduction">hair</a>, <a href="http://www.foresthillslaserspa.com" onclick="window.open(\'http://www.foresthillslaserspa.com/elite-mpx-multiplex.html\',\'blank\');" class="tipInclude" rel="Source/images/content/skin-changer/vein_removal.jpg" title="Spider Vein Removal">vascular</a> and <a href="http://www.foresthillslaserspa.com" onclick="window.open(\'http://www.foresthillslaserspa.com/elite-mpx-multiplex.html\',\'blank\');" class="tipInclude" rel="Source/images/content/skin-changer/age_spot.jpg" title="Skin Rejuvenation">anti-aging</a> treatments for all skin types.\
					</p>';
	myQuotes[1] = '<img src="Source/images/face_esthetic/botox-logo.jpg" width="83" height="85" alt="computer monitor" style="float:left; margin: -8px 10px 0 -10px;" /> \
					<h1 class="title">\
						Facial Aesthetics: <strong>Botox&reg; Injections</strong>\
						<span><a href="http://www.teethtamers.com/facial-care.html" onclick="window.open(\'http://www.teethtamers.com/facial-care.html#botox\');" title="Safe, Effective and Painless,| <strong>Botox&reg; Cosmetic</strong> is a cosmetic surgery alternative that is FDA approved to relax facial muscles resulting in smoother, rejuvenated skin and reduced wrinkles. | And with no recovery period, and completely natural results you will look and feel younger at any age!">Botox&reg; Cosmetic</a> &ndash; non surgical facial rejuvenation with real results.</span>\
				  </h1>\
					<p style="margin-top:-5px; padding-bottom:0.8em;">\
						Erase the persistent signs of aging <a href="http://www.teethtamers.com" onclick="window.open(\'http://www.teethtamers.com/facial-care.html#botox\');" class="tipInclude" rel="Source/images/face_esthetic/botox_frown.jpg" title="Brow Wrinkles">&quot;frown&quot; lines</a>, <a href="http://www.teethtamers.com" onclick="window.open(\'http://www.teethtamers.com/facial-care.html#botox\');" class="tipInclude" rel="Source/images/face_esthetic/botox_crow.jpg" title="Wrinkles Around Eyes">crow&acute;s feet</a> and <a href="http://www.teethtamers.com" onclick="window.open(\'http://www.teethtamers.com/facial-care.html#botox\');" class="tipInclude" rel="Source/images/face_esthetic/botox_forehead.jpg" title="Forehead Wrinkles">&quot;worry&quot; lines</a>.\
					</p>';
					
//	myQuotes[2] = 'this is a test of three';


var myRandom = Math.floor(Math.random()*myQuotes.length);


$('#new-service').html(myQuotes[myRandom]);


});	
