//Script
 $(document).ready(function() {
	//To put later on the true css
	$('.ejemplo').hide();
	$('.ejemplo').css('position','fixed');
	$('.ejemplo').css('right','0%');
	$('.ejemplo').css('bottom','0%');
	$('.ejemplo').css('z-index','100');
	$('.ejemplo').css('border', 'thin solid blue')
	$('.compartir').css('filter', 'alpha(opacity=70)');
	$('.compartir').css('opacity', '0.7');
	$('.compartir').hover(
		function()
	    {
			$(this).css('opacity', '1');
			$(this).css('filter', 'alpha(opacity=100)');
			//$(this).next().fadeIn('fast');
	        return false;
	    },
		function()
	    {
	        $(this).css('opacity', '0.7');
			$(this).css('filter', 'alpha(opacity=70)');
			//$(this).next().fadeOut('fast');
	        return false;
	    }	
	);
 });


