jQuery(document).ready(function(){

		jQuery(".sidebar a").not(".sidebar .activo a").hover(function() {
			jQuery(this).stop().animate({paddingLeft: "12px"}, 400);
		}, function() {
			jQuery(this).stop().animate({paddingLeft: "0px"}, 200);
		}); 
		
		jQuery("#menu a").not("#menu .activo a").hover(function() {
		jQuery(this).stop().animate({opacity: "0.80"}, 400);
		}, function() {
			jQuery(this).stop().animate({opacity: "1"}, 400);
		}); 
		
		
		var element = '';
		jQuery("div#contenedorCasos div").hover(function()	{
			element = "#" + jQuery(this).attr('id')  + ' a img';
			jQuery(element).fadeTo("fast", 0.7); 
			},function(){
				jQuery(element).fadeTo("fast", 1);
			});
		
});

function mail(nombre){
	email=(nombre+'@' + 'iliberi.com')
	document.write('<a href="mailto:' + email + '">' + email + '</a>')
	
	}
	
function nom(este){
	if(este==1){
	no='Francisco Javier';
	ap='Puertas Palma';	
		}else{
	no='Diego';
	ap='Belmonte Pérez';
			}
	document.write(no+' '+ap);
	
	}
