var resizeImages = function(){
	if($(window).width() < 560) {
		$('#blog img').each(function(){	
			$(this).css({position: 'static', width: '480px', marginLeft: '-20px'});
			$('#content').css('width','480px');
			$(this).fadeIn("slow");
		});
	} else if ($(window).width() < 960) {
		$('#blog img').each(function(){	
			var newWidth = ($(window).width()-480);
			var newHeight = parseFloat((newWidth/480)*$(this).attr('height'));
			$(this).removeAttr('width').removeAttr('height').css('width',newWidth+'px').css({display: 'none', position: 'absolute', marginLeft: '0'});
			$(this).fadeIn("slow");
		});
		$('#content').css('width',$(window).width());
	} else {
		$('#blog img').each(function() {
			//if ($(this).css('width') != '480px') {
				$(this).css({width: '480px', position:'absolute', marginLeft:'0', display: 'none'});
				$(this).fadeIn("slow");
			//}
		});
		$('#content').css('width','960px');
	};
};


$(document).ready(function() {
	
	//Resize Images
	resizeImages();
	$(window).resize(resizeImages);

});