// JavaScript Document
$(document).ready(function(){
	var max = 650;
	$('.content img').each(function(i){ 
	  if ($(this).width() > max){
		  $(this).width(max).addClass('border');
	  }
	});
//	$('#title_rss_tt').click(function(){
//		$('#content_rss_tt').toggle();
//	});
});
//$(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

