jQuery.noConflict();

// ajax reload

jQuery(function() { 
	jQuery('.browseLinksWrap a').click(function(){

		var url = jQuery(this).attr("href"); // Link for ajax request

		getContent(url);
		
		jQuery(this).blur();
		return false;
  	});
});

function getContent(url) {

		jQuery("div.artikel-liste").fadeOut(300);
		jQuery("div.loading").show();

		jQuery.ajax({
        		url: url.replace(/\.html/, "/ajax.html"),  // get the url
        		type: "GET",   // transfer data per post
        		success: function(response) {  
					jQuery("div.artikel-liste").html(response);
						
					//alert(response);
        		},
        		error: function(error) {},
        		complete: function() {
					jQuery("div.artikel-liste")
					.fadeIn(200);
					
					jQuery("div.loading").css("display", "none");
				}
      	});

}