<!-- Begin
var Story1	= "yes"		// SHOW 1ST Story
var Story2	= "yes"		// SHOW 2ND Story
var Story3	= "no"		// SHOW 3RD Story
var Story4	= "yes"		// SHOW 4TH Story
var Story5	= "no"		// SHOW 5TH Story
var Story6	= "no"		// SHOW 6TH Story
//    Here is where you type in the data for the news section of the website. 
//    This is set up so that you just need to type the information up here at the top, 
//    save the document and the site will update all the pages.

//    NOTE: If you use an apostrophe add a slash before it like this \'

//
//  ----------  BEGIN STORY ONE HERE-----------------------

	

//    ENTER STORY TWO HERE BETWEEN THE QUOTES. 
var story1short = "Hodnett Group to Provide PR Services to Copyright Clearance Center</b>"	



//  ----------  BEGIN STORY TWO HERE-----------------------



// PUT STORY TWO HERE BETWEEN QUOTES
 var story2short = "HGI Virtual Marketing Department a Perfect Fit for <b>Global Marine Systems</b>"	


//  ----------  BEGIN STORY THREE HERE-----------------------


// PUT STORY THREE HERE BETWEEN QUOTES
var story3short  = "Hodnett Group and Communigration Collaborate on New Image for Software Maker <b>Collabworx</b>"		




// PUT STORY FOUR HERE BETWEEN QUOTES
var story4short  = "Hodnett Group Delivers Creative Support for <b>Winsper</b>"		


// PUT STORY FIVE HERE BETWEEN QUOTES
var story5short  = "Hodnett Group the Right Fit for Luxury Footwear Brand <b>Jeffrey Fitzhugh</b>"		


// PUT STORY SIX HERE BETWEEN QUOTES
var story6short  = "HGI works to Provide PR and Writing Support for <b>Blanc and Otus</b> and <b>AQM Solutions</b>"		



//___________________________________________________________________
//BE VERY CAREFUL DOWN HERE. THIS IS THE JAVASCRIPT THAT MAKES THE NEWS PAGE WORK
//____________________________________________________________________

document.write('<br>');


// First news AREA

 if (Story1 == "yes") {

document.write(' ');
document.write(story1short);
document.write(' ');
document.write('<a href="news.html" class="date"> [Full Story]</a><br>');
document.write('<br>');

 }
// 2ND news AREA

 if (Story2 == "yes") {

document.write(' ');
document.write(story2short);
document.write(' ');
document.write('<a href="news.html" class="date"> [Full Story]</a><br>');
document.write('<br>');
 }

// 3rd news AREA

 if (Story3 == "yes") {

document.write(' ');
document.write(story3short);
document.write(' ');
document.write('<a href="news.html"> [Full Story]</a><br>');
document.write('<br>');
 }

// 4TH news AREA

 if (Story4 == "yes") {

document.write(' ');
document.write(story4short);
document.write(' ');
document.write('<a href="news.html" class="date">[Full Story]</a><br>');
document.write('<br>');
 }


// 5TH news AREA

 if (Story5 == "yes") {
document.write(' ');
document.write(story5short);
document.write(' ');
document.write('<a href="news.html" class="date"> [Full Story]</a><br>');
document.write('<br>');
 }


// 6th news AREA


 if (Story6 == "yes") {
document.write(' ');
document.write(story6short);
document.write(' ');
document.write('<a href="news.html" class="date"> [Full Story]</a><br><br>');
document.write('<br>');
 }



//  End -->
