// Copyright 2010 - www.RazorRobotics.com 

var Parent = document.getElementById("news2");
var NewLI = document.createElement("li");
NewLI.style.marginBottom="50px";
NewLI.innerHTML = ".";
Parent.appendChild(NewLI);

NewLI = document.createElement("li");
NewLI.innerHTML = "Hello, and welcome to Razor Robotics!";
Parent.appendChild(NewLI);

NewLI = document.createElement("li");
NewLI.innerHTML = "My name is Razor, and I hope you enjoy using my website.";
Parent.appendChild(NewLI);

NewLI = document.createElement("li");
NewLI.innerHTML = "Below you will find a list of robotics related topics.";
Parent.appendChild(NewLI);
NewLI = document.createElement("li");
NewLI.innerHTML = "These topics are separated into categories, for beginner, intermediate and advanced users.";
Parent.appendChild(NewLI);
NewLI = document.createElement("li");
NewLI.innerHTML = "Click on one of the links to find out more about that topic. Remember if you want to get back to this page, just click the 'HOME' button.";
Parent.appendChild(NewLI);
NewLI = document.createElement("li");
NewLI.innerHTML = "If you have any questions about using the site, feel free to contact me at info@RazorRobotics.com";
Parent.appendChild(NewLI);
NewLI = document.createElement("li");
NewLI.innerHTML = "Thanks for visiting and comeback soon!";
Parent.appendChild(NewLI);


$(document).ready(function() {
    var options = {
        newsList: "#news2",
        startDelay: 10,
        placeHolder1: "",
        controls: false,
        stopOnHover: false
    }
    $().newsTicker(options);
});
