// jQuery.noConflict();

jQuery(function(){
	jQuery('span.view-large').hide();
	myOp = 0.8;
	
	jQuery(window).load(function(){
		
		// Grid jQuery plugin: http://desandro.com/resources/jquery-masonry/
		
		$('#sort').masonry({ 
			itemSelector: '.box',
			columnWidth: 315,
			animate: true,
			gutterWidth: 20
			//easing: 'linear'
		}, 
		function() { jQuery(this).css({
				margin: '0',
				padding: '0'
			});
		});
		
		// MouseOver Events
		
		jQuery('.box').hover(function(){
			jQuery('img', this).fadeTo("fast", 0.75).addClass('box-hover');
			jQuery('span.view-large', this).fadeTo("fast", 1)},
			function(){
			jQuery('img', this).fadeTo("fast", myOp).removeClass('box-hover');
			jQuery('span.view-large', this).fadeTo("fast", 0)
		});
		
		// Colorbox
		jQuery("a[rel='portfolio']").colorbox();
		
	});
});

