// Global Functions ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------



// Homepage Functions ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

$(document).ready(function ()
	{
		/*$('#flickr').jflickrfeed({
			limit: 5,
			qstrings: {
				id: '49654154@N04'
			},
			itemTemplate: '<li><a target="_blank" href="{{image_b}}"><img src="{{image_s}}" alt="{{title}}" /></a></li>'
		});*/
	
		$('#tweetsFeed').jTweetsAnywhere(
			{
				username: 'marcs_maarssen',
				count: 4,
				showTweetBox:
				{
					label: '<span style="color: #D1C7BA">Spread the word ...</span>'
				}
			}
		);
		
		$("#top_image").cycle( 
			{
				fx: "fade", 
				speed:  3000 
			}
		);
	}
); 


function Xaxu_BrowseBlogEntries(url, wrapper)
{
	$("#" + wrapper).fadeOut("normal", function () 
		{											   	
			$("#" + wrapper).html("<p class=\"jquery_load_ajax\">Momentje a.u.b...</p>");
			$("#" + wrapper).load("includes/" + url, "", function()
				{
					$("#" + wrapper).hide();
					$("#" + wrapper).fadeIn("normal");
				}
			);
		}
	);
}

