jQuery.noConflict();

jQuery(function(){
	jQuery('.box img').fadeTo("fast", 0.75);;	
	jQuery(window).load(function(){
		
		// Grid jQuery plugin: http://desandro.com/resources/jquery-masonry/
		
		

		jQuery('#sort').masonry({ 
			columnWidth: 341,
			animate: true,
			itemSelector: '.box'
			//easing: 'linear'
		}, 
		function() { jQuery(this).css({
			margin: '10px'
			});
		});
		
		// MouseOver Events
		
		jQuery('.box').hover(function(){
			jQuery('img', this).fadeTo("fast", 1).addClass('box-hover');
			jQuery('.releasewrapper', this).fadeTo("fast", 1);
			//jQuery('span.view-large', this).fadeTo("fast", 0)
			},
			function(){
			jQuery('img', this).fadeTo("fast", 0.75).removeClass('box-hover');
			//jQuery('span.view-large', this).fadeTo("fast", 1)
			jQuery('.releasewrapper', this).fadeTo("fast", 0);

		});
		
		// Colorbox
		//jQuery("a[rel='gallery']").colorbox();
		
	});
});



