$(document).ready(function() {
	$("#ticker li:first").show();
	$('#background').height($('#container').height());
	$('#background').width($('#container').width());
	
	setInterval(ticker, 3000);
	function ticker() {
		// console.log("tick");
		$("#ticker li:first").fadeOut('slow', function(){
			$("#ticker li:first").appendTo($('#ticker'));
			$("#ticker li:first").fadeIn('slow');
		})
	};
	// $(window).resize(function() {
	// 	if ( $(window).width() < 820 && $('#background').length == 0 ) {
	// 		console.log("Add background"+ $(window).width())
	// 		
	// 
	// 		
	// 		console.log($('#container').position().left);
	// 		
	// 		// $('#background').position().left($('#container').position().left());
	// 		// $('#background').position().top($('#container').position().top());
	// 	};
	// 	if ( $(window).width() > 821 && $('#background').length != 0 ) {
	// 		console.log("Background removed")
	// 		$('#background').remove();
	// 	}
	// });
});