$(function(){
	var src = '/assets/img.php?img=front-picture.jpg&dir=images&w=525&h=250';
	var picture = new Image()
	picture.onload = function(){
		picture.onload = null;
		$( '#front-picture' ).html( '<img src="' + src + '"/>' );
	}
	
	picture.src = src;
})