var pausecontent=new Array()
pausecontent[0]='<b>ABC Magazine</b> <br />142,000 copies published three times a year across six counties.'
pausecontent[1]='<b>ABC Magazine</b> <br />local information for parents in Sussex, Surrey, Kent, Berkshire, Hertfordshire and Hampshire.'
pausecontent[2]='<b>ABC Magazine</b> <br />fantastic, work-from-home franchise and sales opportunities available.'
pausecontent[3]='<b>ABC Magazine</b> <br />really useful information - priceless yet free!'
pausecontent[4]='<b>ABC Magazine</b> <br />the magazine for real people - it\'s got everything in it!'
pausecontent[5]='<b>ABC Magazine</b> <br />pages bursting with information - what local parents really read!'
pausecontent[6]='<b>ABC Magazine</b> <br />for the babyscene and beyond!'


// Adding more news
// To add more news to the scroller add a new line that says "pausecontent[next number goes here]='News goes here'"
// The scroller shows the news with the lowest number first, so it will cycle through 0 to x
// The scroller must start at 0, and must have atleast 2 entries (0 and 1) otherwise when the scroller tries to cycle to the next news item it will just display the text "Undefined"


// To use characters such as the Apostrophe you must type a backslash before the character for example "I'm" becomes "I\'m" if you do not do this then the scroller will not display itself on the page


// Links
// You can put normal html in the news items, so you can create links by using <a href="Link goes here">Text goes here</a>
// If you want the link to open in a new window use <a href="Link goes here" target="_blank">Text goes here</a>


// Images (The current size of the banner window is 215px wide and 75px tall if an image is any bigger than these dimensions the entire image will not be visible)
// You can use images in the banner by using the normal html img tags
// To add an image use <img src="Link to image here" width="Width in pixels" height="Height in pixels" />
// To make an image a clickable link use:
// <a href="Link goes here" target="_blank"><img src="Link to image here" width="Width in pixels" height="Height in pixels" /></a>

// The header news will pause for 5000 miliseconds