// JavaScript Document
$(document).ready(function(){
	var max = 750;
	$('.content img').each(function(i){ 
	  if ($(this).width() > max){
		  $(this).width(max).addClass('border');
	  }
	});
	$("#list_more li").quickpaginate({perpage:10, showcounter: false, pager:$("#list_counter")});
});
$(window).scroll(function () {  
//	ajaxLoad('rss.php', 'content_rss_tt');
}); 
function ajaxLoad(url, idContent){
	$('#ajaxLoading').show();
	$.post(url, {
	id: 01
	}, function(response){
		setTimeout("jLoading('ajaxLoading', '"+idContent+"', '"+escape(response)+"')", 500);
	});
}
function jLoading(idLoading, idContent, response) {
	$('#'+idLoading).fadeOut('slow');
	$('#'+idContent).html(unescape(response));
	$('#'+idContent).fadeIn(500);
} //jLoading

