


$(document).ready(function(){
    
    host_name = window.location.hostname;
    host_name = 'http://'+host_name+'/';
    
    
    
    $('#infants').mouseover(function(){
        $('#cat_home').load(host_name+'descriptions.php .infants');
    });
    
    $('#toddlers').mouseover(function(){
        $('#cat_home').load(host_name+'descriptions.php .toddlers');
    });
    
    $('#tattoos').mouseover(function(){
        $('#cat_home').load(host_name+'descriptions.php .tattoos');
    });
    
    $('#accessories').mouseover(function(){
        $('#cat_home').load(host_name+'descriptions.php .accessories');
    });
    
    
    
    
    
});
