jQuery.noConflict();

jQuery(function(){
	jQuery('.view-large').hide();
	myOp = 1;
	
	jQuery(window).ready(function(){
		
		// Grid jQuery plugin: http://desandro.com/resources/jquery-masonry/
		
		jQuery('#sort').masonry({ 
			columnWidth: 160,
			animate: false,
			itemSelector: '.box'
			//easing: 'linear'
		});
		
		// MouseOver Events
		
		jQuery('.box').hover(function(){
			jQuery('.text-preview', this).fadeTo("fast", 0).addClass('box-hover');
			jQuery('.view-large', this).fadeTo("fast", 1)},
			function(){
			jQuery('.text-preview', this).fadeTo("fast", myOp).removeClass('box-hover');
			jQuery('.view-large', this).fadeOut("fast")
		});
		
	});
});

