jQuery.noConflict();
(function($) {

	$('span.view-large').hide();
	myOp = 1;
	
	$(window).load(function(){
		$('#sort').masonry({ 
			columnWidth: 350,
			animate: true,
			itemSelector: '.box'
		}, 
		function() { $(this).css({
			margin: '10px'
			});
		});
	});
	
	// MouseOver Events
/*	$('.box').hover(function(){
		$('img', this).fadeTo("fast", 0.75).addClass('box-hover');
		$('span.view-large', this).fadeTo("fast", 1)},
	function(){
			$('img', this).fadeTo("fast", myOp).removeClass('box-hover');
			$('span.view-large', this).fadeTo("fast", 0)
	});
*/	

	$('.box').hover(function(){
		$('img', this).fadeTo("fast", 0.75).addClass('box-hover');	
     },
	function(){
			$('img', this).fadeTo("fast", myOp).removeClass('box-hover');
	});

	// Colorbox
	$("a[rel='gallery']").colorbox({
		maxWidth: '85%',
		maxHeight: '85%'
	});
	
})(jQuery);
