// JavaScript Document
var logo = document.createElement("div");
logo.innerHTML = '<div id="ivo" style="float:right"><a href="./?http://www.facebook.com/pages/Westmont-IL/McGrath-Lexus-of-Westmont/105635070350"><img border="0" alt="McGrath Lexus of Westmont on Facebook" src="http://assets.cobaltnitra.com/teams/repository/680/a1e08dbe610048fb800146edef087/1/facebook_30.png"/></a><a href="./?http://twitter.com/McGrath_Lexus"><img border="0" alt="McGrath Lexus of Westmont on Twitter" src="http://assets.cobaltnitra.com/teams/repository/6b9/851c0dbe610048fb800146edef087/1/icon_twitter32.png"/></a></div>';
var newdiv=document.createElement("div")
var newtext=document.createTextNode("A new div")
newdiv.appendChild(newtext) //append text to new div
document.getElementById("CmastheadQuickLinks").appendChild(logo) //append new div to another div
