$(document).ready(function() {

	 var plusImg = new Image();
	 plusImg.src = 'images/plus11.gif';
	 var minusImg = new Image();
	 minusImg.src = 'images/minus11.gif';
	 
	 $(".newsData").css("padding-left",1.25*($(".newsDate").width()));
	 $(".newsDesc").css("display","none").css("clear","left");
	 $(".readMore").html("<a href=\"#\"><img /></a> ");
	 $(".readMore a img").attr("src","images/plus11.gif");
	 $(".newsHeadline").wrapInner("<a href=\"#\"></a>");

	 $(".readMore a,.newsHeadline a").toggle(function(e) {
		  e.preventDefault();
		  $(this).blur();
		  $(this).parent().nextAll(".newsDesc").css("display","inline");
		  if ($(this).parent().hasClass("readMore")) {
		      $(this).children().attr("src","images/minus11.gif");
		  } else {
		      $(this).parent().prev().children().children().attr("src","images/minus11.gif");
		  }
		}, function(event) {
			event.preventDefault();
			$(this).blur();
			$(this).parent().nextAll(".newsDesc").css("display","none");
			if ($(this).parent().hasClass("readMore")) {
				$(this).children().attr("src","images/plus11.gif");
			} else {
				$(this).parent().prev().children().children().attr("src","images/plus11.gif");
			}
		});

});

