// JavaScript Document
(function($) {
	var g_currPictNum = new Date().getDate();
	$(document).ready(function() {
		getMorePicts();
		$('#btn_refresh').click(function(e) {
			g_currPictNum++;
			getMorePicts();
		});
	});
	
	function getMorePicts() {
		$.getJSON("http://www.renaudgautier.ch/wordpress/wp-content/themes/renaudgautier/_services/ajax.php", {t:g_currPictNum},function(data) {
			$('#dailyimg').fadeOut(100, function() {
				$(this).html( data.image );
				$(this).fadeIn(250);
			});
			$('#sentence').html( data.text );			
		});		
	}
})(jQuery);
