$(function(){
	
	$.ajaxSetup ({  
        cache: false  
    });
	
	var loader = "<img src='/img/load-ajax.gif' alt='loading...' />";  
	$('.content').find('.mdh-normal').each(function(index) {
		$(this).html(loader).fadeIn(400).load('/ads/werbung.php?type=2');
	});
	
	$('.content').find('.mdh-premium').each(function(index) {
		$(this).html(loader).load('/ads/werbung.php?type=1');
	});
	
	/*var loader = "<img src='/img/load-ajax.gif' alt='loading...' />",
		loadUrl = "/ads/werbung.php";
	
	$('.content').find('.mdh-normal').each(function(index) {
		$(this).html(loader);
		$.get(  
			loadUrl,  
			{type: "2"},  
			function(responseText){  
				$(this).html(responseText);  
			},"html"  
		);  
	});
	
	$('.content').find('.mdh-premium').each(function(index) {
		$(this).html(loader).load('/ads/werbung.php?type=1');
	});*/
	
});

