// JavaScript Document

// *************************************************** //
//                 NEWS FEED OBJECT #1
// *************************************************** //
function newsFeedHeader1(){
	
	document.write( 'Mar. 7, 2009' );
		
}

function newsFeedBody1(){
	
	document.write( 'New Project in Development' );

}

// *************************************************** //
//                 NEWS FEED OBJECT #2
// *************************************************** //
function newsFeedHeader2(){
	
	document.write( 'Feb. 13, 2009' );
		
}

function newsFeedBody2(){
	
	document.write( 'Website Updates, Metallica - Death Magnetic Review, Gamer&rsquo;s Lounge Details, Kevin&rsquo;s Teeth Grinder of the Week' );

}


// *************************************************** //
//                 NEWS FEED OBJECT #3
// *************************************************** //
function newsFeedHeader3(){
	
	document.write( 'Dec. 23, 2008' );
		
}

function newsFeedBody3(){
	
	document.write( 'Website Updates - Current and Future' );

}

