$(document).ready(function() {
    $(function () {
		$.each(
		$('.loading'),
			function( intIndex, objValue ){
				var img = new Image();
				$(img).load(function () {
					$(this).hide();
					$(objValue).removeClass('loading').append(this);
					$(this).fadeIn();
				}).error(function () {
				}).attr('src', $(this).attr('load'));

				$(img).attr('src', $(this).attr('load'));
			}
		);
    });

	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
});
