$(document).ready(function() {

	// Dynamic Floating
	$('#dynamic-wrapper').masonry({
		columnWidth: 240, 
		itemSelector: '.grid_4,.grid_8' 
	});


	// Fading Objects
	$('#home-block').css('opacity', 1.0);
	$("#home-wrapper").hover(function() {	
		$('#home-block').fadeTo("normal", 0.0);
	},function() {
		$('#home-block').stop();
		$('#home-block').fadeTo("normal", 1.0);
	});

	$('.grid-item-thumbnail').css('opacity', 0.8);
	$(".grid-item.flickr,.grid-item.tumblr,.grid-item-hf.tumblr,.grid-item.cm-com,.grid-item.vimeo").hover(function() {	
		$(this).find('.grid-item-wrapper').fadeTo("normal", 0.0);
		$(this).find('.grid-item-thumbnail').fadeTo("normal", 1.0);
	},function() {
		$(this).find('.grid-item-thumbnail').stop();
		$(this).find('.grid-item-thumbnail').fadeTo("normal", 0.8);
		$(this).find('.grid-item-wrapper').stop();
		$(this).find('.grid-item-wrapper').fadeTo("normal", 1.0);
	});

	$('.grid-item-no-thumbnail').css('opacity', 1.0);
	$(".grid-item.twitter,.grid-item.delicious,.grid-item.lastfm,.grid-item.instapaper").hover(function() {	
		$(this).find('.grid-item-no-thumbnail').fadeTo("normal", 0.0);
	},function() {
		$(this).find('.grid-item-no-thumbnail').stop();
		$(this).find('.grid-item-no-thumbnail').fadeTo("normal", 1.0);
	});
				
});
