$(document).ready( function() 
{
	$("#carroAcceso").hover( function (e) {
		e.preventDefault();

		$(this).animate(
			{"left": "+=10px"}, "normal").animate(
			{"left": "-=10px"}, "normal");
	});

	
	$("#mainNav a").hover( function (e) {
		e.preventDefault();
		
		$(this).animate(
			{"top": "-=10px"}, "fast").animate(
			{"top": "+=10px"}, "fast");
		/*$(this).animate(
			{"opacity": 0, 		"top": "-=16px"}, "normal").animate(
			{					"top": "+=32px"}, 0).animate(
			{"opacity": 100, 	"top": "-=16px"}, "normal");*/
	});
	
	$("#categorias a").hover( function (e) {
		e.preventDefault();
		
		
		$(this).animate(
			{"left": "+=10px"}, "fast").animate(
			{"left": "-=10px"}, "fast").clearQueue();
	});
});
