jQuery.noConflict();
(function($) {

	$('span.view-large').hide();
	myOp = 1;
	
	$(window).load(function(){
		$('#sort').masonry({ 
			columnWidth: 257,
			animate: true,
			itemSelector: '.box'
		});
	});
	
	// MouseOver Events
	$('.box p').hover(function(){
		$('img', this).fadeTo("fast", 0.65).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)
	});
	
	// Colorbox
	$("a[rel='gallery']").colorbox({
		maxWidth: '85%',
		maxHeight: '85%'
	});
	
})(jQuery);
