jQuery.noConflict();

jQuery(function(){
	
	jQuery(window).load(function(){
		
		// Grid jQuery plugin: http://desandro.com/resources/jquery-masonry/
		
		jQuery('#sort').masonry({ 
			columnWidth: 350,
			animate: true,
			itemSelector: '.box'
		}, 
		function() { jQuery(this).css({
			margin: '0'
			});
		});
		
		// Colorbox
		jQuery("a[rel='gallery']").colorbox();
		
	});
});

