var general = {
	
	// OnLoad functions
	init: function(){
		this.bubbleEvt();
	},
	
	bubbleEvt: function() {

		$(".news-archive .see-all").click(function(){
			general.toogleNews(this);
			return false;
		});
		

	},
	
	toogleNews: function(e) {
		$(e).prev().children("li.display-none").slideDown("slow", function(){$(e).hide("slow");});
		
	}
		
}

$(document).ready(function(){			   
	general.init();
});
