// JavaScript Document

$(document).ready(function(){
	
	$.ajax({
        url: LINKBASE + 'tienda/usuario.php',
		dataType: "html",
        success: function(data){
			$("#menu .usuario").html(data);
			$("#header_user #shopping_cart a").attr('href', LINKBASE+'tienda/carrito');
        }
    });
	
	/** BOUNCE */
    $("#cabecera .social a").bind("mouseenter", function(){
        $(this).effect("bounce", { times: 3, distance: 10 }, 300);
    });
	
});
