$(document).ready(function(){

$("#news34_LG").append("<a href='http://www.history.com/shows.do?episodeId=481900&action=detail' class='news34_LGclass'>History Channel</a>");

$("#news35_LG").append("<a href='http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=333251087&mt=8' class='news35_LGclass'>Download your free iPhone app today</a>");

$("#news35_LG").append("<a href='mobile_pdfs/MusicBoxMobile.pdf' class='news35_LG2class'>Detailed information about MusicBoxMobile</a>");
	
	$(".newsitem").click(function(){
		//get id of clicked element
		a = this.id;
		//create id for upper element
		b = "#" + a + "_LG";
		//fade out current top image that's visible
		$(".topNewsItem:visible").fadeOut("slow", function(){
		//create callback function so fadein happens after fadeout
		$(b).fadeIn("slow");
		});
	});

});