// Array with the files
var files = new Array(
	'homeNews.jquery.js',
	'homeAgenda.jquery.js',
	'homeFunzone.jquery.js'
);


// Loop trough the array of files and load them when
// the DOM is ready
$(document).ready( function()
{
	for ( var i=0; i < files.length; i++ )
	{
		// Load the file
		$('head').append('<script type="text/javascript" src="' + comp_path + files[i] + '"></script>');
	}
});
