$(document).ready(function() {

	/* --- BALLOONS --- */
	/*
	$('.balloon').bt({
	  positions: 'top',
	  fill: '#FFFFFF',
	  strokeStyle: '#5A5B5E',
	  strokeWidth: 1,
	   spikeLength: 10
	});
	*/
	/* --- AJAX --- */
	$('#pictures_box').load('http://www.2sites.be/cas/sweden/wp-content/themes/sweden/_ajax/flickr.php');
	$('#weather_box').load('http://www.2sites.be/cas/sweden/wp-content/themes/sweden/_ajax/weather.php');
	
	/* --- TWITTER --- */
	$.getJSON('http://www.2sites.be/cas/sweden/wp-content/themes/sweden/_ajax/twitter.php', function(data){
		$('#status_box').html(data[0]);
		$('#ticker').html(data[1]);
		$("#ticker").liScroll(); 
	}); 
});


