$(document).ready(function() {
	$('.gallery-box a').click(function () {
		var _img = $(this).attr('href');
		/* if picture not is*/
		if (!_img ) {
			_img = '/images/defult-image.jpg'
		}
		
		$("body").append('<div id="popup"><span id="midle"><strong><img src="'+ _img + '" alt="" /><em>close</em></strong></span></div>');
		$('#popup strong').width($('#popup img').width());
		$('#popup').width($(window).width()).height($(window).height()).css('z-index','1000').animate({opacity: 1}, 750 );
			$('#popup em').click(function () {
				$('#popup').animate({opacity: 0}, 500 );
				setTimeout(function(){
					$('#popup').remove();
				}, 500);
				return false;
			});
		return false;
	});
});