jQuery.noConflict();
(function($) {


	$('span.view-large').hide();
	myOp = 1;
	
	$(window).load(function(){
		$('#sort').masonry({ 
			columnWidth: 250,
			animate: true,
			itemSelector: '.box',
			isFitWidth: true,
		}, 
		function() { $(this).css({
			margin: '0px'
			});
		});
	});
	
	// MouseOver Events
	$('.box').hover(function(){
	    $('.box').not(this).stop().animate({ opacity: 0.3 });
if ($.browser.msie) {
		$(this).find(".entry").find("img").css({ visibility: 'hidden' })
} else { }
		$(this).find(".entry").find(".postlinks").show();
		$(this).find(".entry").find("img").css({ opacity: '0' })
		$('.entry', this).addClass('entry-hover');
		},
	function(){
		    $('.box').not(this).stop().animate({ opacity: 1 });
if ($.browser.msie) {
		$(this).find(".entry").find("img").css({ visibility: 'visible' })
} else { }
			$(this).find(".entry").find(".postlinks").hide();
			$(this).find(".entry").find("img").css({ opacity: '1' })
			$('.entry', this).removeClass('entry-hover');
	});
	
	// Colorbox
	$("a[rel='gallery']").colorbox({
		maxWidth: '85%',
		maxHeight: '85%'
	});
	
})(jQuery);
