$(document).ready(function() {
	var d = new Date();
	$('img').each(
	function() {
		$(this).attr('src', $(this).attr('src') + '?' + d.getTime())
	});
});
