/**
 * Utils methods
 */
$(function(){
	
	/**
	 * Useful to standard target blank links
	 */
	$('.target-blank').click(function(){
		$(this).attr('target', '_blank');
		
	});
	//gallery-secundary home
	var list = $(".wrapGallerySecundary li")
	
	list.css({opacity:"0.4"});
	
	list.mouseover(function(){
		var self = $(this);
		self.stop(true,true).animate({
			opacity: 1.0
		});
	});
	list.mouseout(function(){
		var self = $(this);
		self.stop(true,true).animate({
			opacity: 0.4
		});
	});
});

