var coutn_news = 0; 

$(document).ready(function() {
	if (offerPage != '') {
		$.get(offerPage, { box: "1" },
			function(data) {
				$("#scrolledContainer").html(data);
				startScrollingso();
			}
		);
	}
	/*$.get(eventPage, { box: "1" },
		function(data) {
			$("#scrolledContainer2").html(data);
			startScrolling();
		}
	);*/
});

