
jQuery(document).ready(function($) {

	//hacemos que todo el bloque contenga el link

	$(".sidebar-box ul li").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

	//efecto para las listas de la pagina principal
	
	$(".sidebar-box ul li").hover(

		function(){
			$(this).animate({ 
				//marginTop:"0.1in",
				backgroundColor: "#FFFBDE",
				color:"#D45637"
			}, 100 );
		},
		
		function(){
			$(this).animate({ 
			//marginTop:"0",
			backgroundColor: "#ffffff",
			color:"#444444"
			}, 500 );
		}
	);

	//efecto para las listas de la pagina principal
	
	$("#pages a").hover(

		function(){
			$(this).animate({ 
				color: "#999999"		
			}, 300 );
		},
		
		function(){
			$(this).animate({ 
				color: "#efefef"	
			}, 200 );
		}
	);
	/*
	$("#menu_user a").hover(

		function(){
			$(this).animate({ 
				//backgroundColor: "#222222",
				//marginBottom:"0.02in"
				//paddingLeft:"20px",
					//padding:"13px",
						color: "#888888"
				
			}, 200 );
		},
		
		function(){
			$(this).animate({ 
				//backgroundColor: "#444444",
				//marginBottom:"0"
				//paddingLeft:"12px"
				color: "#ffffff"
			}, 200 );
			
		}
	);
	*/
	//mostrar opciones para compartir
	
	$(".libro_head").click(function(){
		$(this).next(".libro_body").slideToggle("fast")
		return false;
	});
	//como_fucniona
	/*
	$('a.lightbox').lightBox();
*/

});
	

