$(function() {

	$('.box').css('height', 'auto');
	$('#gallery').masonry({ singleMode: true, resizeable: true, itemSelector: '.box', columnWidth: 201 });					
	$('.box a')
		.css( {backgroundColor: "#eee"} )
		.hover(
			function(){
			$(this).stop().animate(
				{backgroundColor:"#ddd"}, 
				{duration:100})
			},
			function(){
			$(this).stop().animate(
				{backgroundColor:"#eee"}, 
				{duration:250});
	});

});
