$j=jQuery.noConflict();

// Use jQuery via $j(...)
$j(document).ready(function(){

// Yellow Rollover on Images

	$j('a img').live("mouseover", function(){
 
 		$j('span#color').css('display', 'block').css('height', $j(this).css('height')).css('width', $j(this).css('width')).css('top', $j(this).offset().top).css('left', $j(this).offset().left);
 		$j('span#color').unbind('click');
 		$j($j('span#color').parents()[0]).attr('href', $j($j(this).parents()[0]).attr('href'))});
 
 		$j('span#color').live("mouseout", function(){
 		$j(this).css('display', 'none');
 	});
 	

	$j('#images').masonry({
		itemSelector: 'img',
		gutterWidth: 15,
		isFitWidth: true
	});


});
