jQuery().ready(function() {
	var $container = $('#content');
	$container.imagesLoaded(function(){
		$container.masonry({
		   singleMode: true,
		   columnWidth: 263, 
		   itemSelector: '.item' 
		});
		$container.show("fast");
	});
	//jQuery('#content').show("fast");
});
/*
window.onload=function() {
	jQuery('#content').masonry({
	   singleMode: true,
	   columnWidth: 263, 
	   itemSelector: '.item' 
	});
};
*/ 

