/**
 * @author wes
 */
$(document).ready(function(){
	$('#contentBucket3').css('margin','-37px 0 0 0 !important');
});
function viewAllNews(lang,limit) {
	
	$('#contentBucket3').css("min-height", $('#contentBucket3').height());
	$('.newsBlock').fadeOut(100, function() {
		
		//call ajax
		$.get('../pages/functions/getnews.php', {'lang':lang,'limit':limit}, function(data){
			//alert("test");
			$('.newsBlock').empty().html(data).fadeIn(100);
			$('#contentBucket3').css("min-height", $('.newsBlock').height());
		});
	});

}