
$(document).ready(function()
			{

				//slides the element with class "news_body" when mouse is over the paragraph
				$(".news_holder").click(function(e)
				{
					var hd = $(this).find('div.news_head');
					hd.addClass("more_arrow");
					
					$(this).siblings().find("div.news_bottom").slideUp(300);
					$(this).find('div.news_bottom').slideDown(300,function(){
						$('html,body').animate({scrollTop: $(hd).offset().top-10},300);
						mdiv.style.display="block";
					});
					
					$(this).siblings().find("div.news_head").removeClass("more_arrow").removeClass("more_over");;
					$(this).siblings().css('backgroundColor','transparent');
					
				});
				
				$("#minusDiv").click(function(e){
					$("#minusDiv").css('display','none');
					$(".news_holder").find("div.news_bottom").slideUp(300);
					$(this).siblings().find("div.news_head").removeClass("more_arrow").removeClass("more_over");;
					$(this).siblings().css('backgroundColor','transparent');
					
				});
				
			  var mdiv = document.getElementById('minusDiv');
				$(".news_body").mousemove(function(e){
				 mdiv.style.top = e.pageY - 5 + 'px';
				 mdiv.style.left = ($(this).position().left +  720) + 'px';
				});

				$(".news_holder").mouseover(function(e)
				{
					if ($(this).find("div.news_bottom").is(":hidden")) {
						$(this).find('div.news_head').addClass("more_over");
					}
				});
				$(".news_holder").mouseout(function(e)
				{
					if ($(this).find("div.news_bottom").is(":hidden")) {
					$(this).find('div.news_head').removeClass("more_over");
					}

				});
			});