$(function(){

	$(document).bind("contextmenu",function(){ 
		return false;  
   });

	$('div.single img:first').addClass('first');
	
	$('div.single a').each(function(){
		
		if($(this).find("img").length > 0)
		{
			$(this).click(function(){
				return false;
			})
		}
		
	});
	
	$('div.single div.gallery dl dt img').each(function(){
	
		src_first = $('div.single img.first').attr('src');
		src_outras = $(this).attr('src');
		
		if($(this).attr('class') != 'first'){
		
			if(src_first == src_outras){
				$(this).remove();
			};	
	
		};
	
	});
	
});
