$(document).ready(function() {
	fn_removeLastBorder();
	
})


/////FUNCTION DEFINITIONS/////
fn_removeLastBorder = function() {
	$('.news_post:last').css({border:"none"});
};
