$(document).ready(function()
{
	$('div.ajaxload').each(function()
	{
		var self = $(this);		
		var rel = self.attr('rel');
		
		
		self.attr({height: "400px" });
		//self.html('hejsan');
		//self.text('Loading... (' + rel + ')');
		//alert('Hello from media/ajaxload.js! $(document).ready(function() ' + rel);
		self.load(base_url + self.attr('rel'));
		
	});
	
	
	
	$('div.message').each(function()
			{
				var self = $(this);		
				var rel = self.attr('rel');
				self.text('Loading...' + rel);
				
				self.load(base_url + self.attr('rel'));
				/*
				self.load(base_url + self.attr('rel'), null, function(){
					   $('div.message').animate(
								{height: "200px"}	
						);
				 });
				 */
			});	
	

	
	
	
	/*
	$('div.resize').each(function()
	{
		var self = $(this);
		alert('resize');
		self.animate(
			{height: "200px"}	
		);
		
		
	});
	*/
	
});

