$(document).ready(function(){    
    $(".newshide").hide();
    $("a.seemoreB").hide();	
    $(".seemore> a").click(function () {      
	   var toShow = true;
	   if($(this).attr('class')=="seemoreB"){
		  toShow = false;
	   }
	   var selectid = $(this).parent(".seemore").attr('id');	   
	   if(toShow){
			//$("#news"+selectid).find(".newshide").fadeIn("fast");
			$(".newshide").fadeIn("fast");  
			$(this).siblings("a.seemoreB").show();
	   }
	   else{
			//$("#news"+selectid).find(".newshide").fadeOut("fast");
			$(".newshide").fadeOut("fast"); 	    	   
			$(this).siblings("a.seemoreA").fadeIn("fast");
	   }
	   $(this).hide();	   
	   return false;
	});
});
